回差值和界面功能增加
This commit is contained in:
@@ -62,6 +62,9 @@ namespace CapMachine.Wpf.Services
|
||||
case "过热度/过冷度配置":
|
||||
ShowSuperHeatCool(msg.Par);
|
||||
break;
|
||||
case "COP物性参数回差":
|
||||
ShowTherdyConfig(msg.Par);
|
||||
break;
|
||||
case "规则转换":
|
||||
if (SysRunServer.MachineRunState1.IsRunState)
|
||||
{
|
||||
@@ -104,7 +107,19 @@ namespace CapMachine.Wpf.Services
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// COP物性参数回差配置弹窗
|
||||
/// </summary>
|
||||
private void ShowTherdyConfig(object par)
|
||||
{
|
||||
DialogService.ShowDialog("DialogTherdyConfigView", new DialogParameters() { { "Name", par } }, (dialogResult) =>
|
||||
{
|
||||
if (dialogResult.Result == ButtonResult.OK)
|
||||
{
|
||||
PPCService.ReloadTherdyH3TempOffset();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 过热度和过冷度配置弹窗
|
||||
|
||||
@@ -38,6 +38,7 @@ namespace CapMachine.Wpf.Services
|
||||
new NavigationItem("", "计算信息","",new ObservableCollection<NavigationItem>()
|
||||
{
|
||||
new NavigationItem("SuperHeatCool","过热度/过冷度配置","DialogSuperHeatCoolConfigView"),
|
||||
new NavigationItem("","COP物性参数回差","DialogTherdyConfigView"),
|
||||
//new NavigationItem("Palette","过冷度",""),
|
||||
}),
|
||||
new NavigationItem("", "规则设置","",new ObservableCollection<NavigationItem>()
|
||||
|
||||
Reference in New Issue
Block a user