| 12345678910111213141516171819202122232425262728293031323334 |
- using CommunityToolkit.Mvvm.Input;
- namespace SummaryModule.Dialogs.ViewModels;
- internal partial class WaferRobotManualViewModel : ObservableObject, IDialogAware
- {
- public DialogCloseListener RequestClose { get; }
- [ObservableProperty]
- private string? _Title = "WaferRobot Manual";
- [ObservableProperty]
- private ImageSource? _ImageSource;
- public bool CanCloseDialog()
- {
- return true;
- }
- public void OnDialogClosed()
- {
- }
- public void OnDialogOpened(IDialogParameters parameters)
- {
- }
- [RelayCommand]
- private void Close()
- {
- this.RequestClose.Invoke();
- }
- }
|