界面数据步骤数据的绑定

This commit is contained in:
2025-04-26 16:02:12 +08:00
parent 55c9e1c216
commit cf3d09cb3e
6 changed files with 106 additions and 73 deletions

View File

@@ -76,11 +76,22 @@ namespace CapMachine.Wpf.Models.ProModelPars
/// </summary>
public ProStepExe NextProStepExe { get; set; }
private ProStepExe _CurProStepExe;
/// <summary>
/// 当前步骤数据执行
/// 给看步骤是否变化使用
/// </summary>
public ProStepExe CurProStepExe { get; set; }
public ProStepExe CurProStepExe
{
get { return _CurProStepExe; }
set { _CurProStepExe = value;RaisePropertyChanged(); }
}
///// <summary>
///// 当前步骤数据执行
///// 给看步骤是否变化使用
///// </summary>
//public ProStepExe CurProStepExe { get; set; }
/// <summary>
/// 上一步步骤数据执行