| 1234567891011121314151617181920 |
- using Prism.Commands;
- using TeamAAS.FlowEngine.Execution;
- namespace TeamAAS.ViewModels
- {
- /// <summary>
- /// 产量统计页 ViewModel(绑定 FlowRunner 的真实运行统计)。
- /// </summary>
- public class StatisticsViewModel : TeamAAS.BindableBase
- {
- public RunStatistics Stats => RunStatistics.Instance;
- public DelegateCommand ResetStatisticsCommand { get; }
- public StatisticsViewModel()
- {
- ResetStatisticsCommand = new DelegateCommand(() => RunStatistics.Instance.Reset());
- }
- }
- }
|