| 1234567891011121314151617181920212223242526272829 |
- using DataVM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- namespace JobModule.Pops.JobNormal;
- internal partial class ProcessPopViewModel : ObservableObject, IPopAware
- {
- public ImageSource? ImageSource { get; set; }
- public string? Title { get; set; } = "Charge->Process->Discharge";
- public Action? RequestClose { get; set; }
- public bool CanClose()
- {
- return true;
- }
- public void OnClose()
- {
- }
- public void OnPop(object? state)
- {
- }
- }
|