csv导入和导出的问题

排量配置的问题
物性参数回差值配置的问题
This commit is contained in:
2026-04-30 11:35:27 +08:00
parent 74bf47ee62
commit 802348a743
15 changed files with 457 additions and 229 deletions

View File

@@ -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,6 +107,17 @@ namespace CapMachine.Wpf.Services
});
}
private void ShowTherdyConfig(object par)
{
DialogService.ShowDialog("DialogTherdyConfigView", new DialogParameters() { { "Name", par } }, (dialogResult) =>
{
if (dialogResult.Result == ButtonResult.OK)
{
PPCService.ReloadTherdyH3TempOffset();
}
});
}
/// <summary>