ProcessPopViewModel.cs 592 B

1234567891011121314151617181920212223242526272829
  1. using DataVM;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Media;
  8. namespace JobModule.Pops.JobNormal;
  9. internal partial class ProcessPopViewModel : ObservableObject, IPopAware
  10. {
  11. public ImageSource? ImageSource { get; set; }
  12. public string? Title { get; set; } = "Charge->Process->Discharge";
  13. public Action? RequestClose { get; set; }
  14. public bool CanClose()
  15. {
  16. return true;
  17. }
  18. public void OnClose()
  19. {
  20. }
  21. public void OnPop(object? state)
  22. {
  23. }
  24. }