| 1234567891011121314151617181920212223242526272829303132 |
-
- namespace ParameterModule.Pops.ViewModels;
- internal partial class ParaTempProfileEditViewModel : ObservableObject, IPopAware
- {
- public ParaTempProfileEditViewModel()
- {
- for (int i = 1; i <= 3; i++)
- this.TempProfile.Add(new($"Table {i}"));
- }
- public ImageSource? ImageSource { get; set; }
- public string? Title { get; set; } = "Temp Profile Edit";
- public Action? RequestClose { get; set; }
- [ObservableProperty]
- private ObservableCollection<TempProfileInfo> _TempProfile = [];
- public bool CanClose()
- {
- return true;
- }
- public void OnClose()
- {
- }
- public void OnPop(object? state)
- {
- }
- }
|