| 1234567891011121314151617181920212223242526272829303132 |
- using System.Net.NetworkInformation;
- using System.Windows.Media;
- namespace MaintainModule.Pops.Boat;
- internal partial class BoatModifyWaferViewModel : ObservableObject, IPopAware
- {
- public ImageSource? ImageSource { get; set; }
- public string? Title { get; set; } = "Boat Wafer";
- public Action? RequestClose { get; set; }
- public bool CanClose()
- {
- return true;
- }
- public void OnClose()
- {
- }
- public void OnPop(object? state)
- {
- }
- [RelayCommand]
- private void Close()
- {
- this.RequestClose?.Invoke();
- }
- }
|