Compare commits
17 Commits
HASCO_KR26
...
SongZhi_Pr
| Author | SHA1 | Date | |
|---|---|---|---|
| df3da9d9cb | |||
| 268f4baf99 | |||
| 2b2097d1ed | |||
| b67ba5bb27 | |||
| 0fb230079b | |||
| 196df6b181 | |||
| 873f6ced0a | |||
| 985ad12d63 | |||
| 53ca705ab0 | |||
| 4f5c6949f4 | |||
| 1dfcf5f77a | |||
| 4cdda056b4 | |||
| e954988fb5 | |||
| c1df40ac4c | |||
| 8b96c482f7 | |||
| d0aca2cbdb | |||
| f02e336f34 |
7
.claude/settings.local.json
Normal file
7
.claude/settings.local.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"mcp__filesystem__directory_tree"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -261,7 +261,7 @@ namespace CapMachine.Wpf
|
||||
|
||||
//给当前的全局异常捕捉服务使用
|
||||
LogService = ContainerLocator.Container.Resolve<ILogService>();
|
||||
LogService.Error("Start-->OnInitialized");
|
||||
LogService.Info("程序启动");
|
||||
base.OnInitialized();
|
||||
|
||||
//#endregion
|
||||
@@ -283,13 +283,31 @@ namespace CapMachine.Wpf
|
||||
TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException;
|
||||
//非UI线程未捕获异常处理事件 (例如自己创建的一个子线程)
|
||||
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
|
||||
|
||||
//首次抛出(含被吞掉的)异常也落日志,便于排查闪退场景下原生互操作异常
|
||||
AppDomain.CurrentDomain.FirstChanceException += (s, fce) =>
|
||||
{
|
||||
try
|
||||
{
|
||||
var ex = fce.Exception;
|
||||
//只关心严重异常,避免日志被刷爆
|
||||
if (ex is AccessViolationException
|
||||
|| ex is System.Runtime.InteropServices.SEHException
|
||||
|| ex is StackOverflowException
|
||||
|| ex is OutOfMemoryException)
|
||||
{
|
||||
LogService?.Error($"[FirstChance-FATAL] {ex.GetType().Name}: {ex.Message}\r\n{ex.StackTrace}");
|
||||
}
|
||||
}
|
||||
catch { /* 异常处理函数中绝不能再抛 */ }
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
void App_Exit(object sender, ExitEventArgs e)
|
||||
{
|
||||
//程序退出时需要处理的业务
|
||||
LogService.Error("程序退出");
|
||||
LogService.Info("App-程序退出");
|
||||
}
|
||||
|
||||
|
||||
@@ -304,12 +322,14 @@ namespace CapMachine.Wpf
|
||||
try
|
||||
{
|
||||
HandleException(e.Exception);
|
||||
MessageBox.Show("UI线程异常:" + e.Exception.Message);
|
||||
//MessageBox.Show("UI线程异常:" + e.Exception.Message);
|
||||
LogService.Error("UI线程异常:" + e.Exception.Message);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
HandleException(ex);
|
||||
MessageBox.Show("UI线程发生致命错误!");
|
||||
//MessageBox.Show("UI线程发生致命错误!");
|
||||
LogService.Error("UI线程发生致命错误!");
|
||||
}
|
||||
finally
|
||||
{
|
||||
@@ -346,8 +366,8 @@ namespace CapMachine.Wpf
|
||||
{
|
||||
sbEx.Append(e.ExceptionObject);
|
||||
}
|
||||
MessageBox.Show(sbEx.ToString());
|
||||
|
||||
//MessageBox.Show(sbEx.ToString());
|
||||
LogService.Error(sbEx.ToString());
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -374,7 +394,8 @@ namespace CapMachine.Wpf
|
||||
{
|
||||
HandleException(exception);
|
||||
//task线程内未处理捕获
|
||||
MessageBox.Show("Task线程异常:" + e.Exception.Message);
|
||||
//MessageBox.Show("Task线程异常:" + e.Exception.Message);
|
||||
LogService.Error($"Task线程异常");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -395,7 +416,7 @@ namespace CapMachine.Wpf
|
||||
private void HandleException(Exception ex)
|
||||
{
|
||||
//记录日志
|
||||
LogService.Error(ex.ToString());
|
||||
LogService.Error($"App捕捉HandleException-{ex.ToString()}");
|
||||
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,12 +1,13 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UseWPF>true</UseWPF>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<LegacyCorruptedStateExceptionsPolicy>true</LegacyCorruptedStateExceptionsPolicy>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -15,6 +16,7 @@
|
||||
<None Remove="Assets\Images\favicon.ico" />
|
||||
<None Remove="Assets\Images\Logo.png" />
|
||||
<None Remove="Assets\Images\参考工艺图.png" />
|
||||
<None Remove="NLog.config" />
|
||||
<None Remove="PPCalculation\REFPROP\FLUIDS\13BUTADIENE.FLD" />
|
||||
<None Remove="PPCalculation\REFPROP\FLUIDS\1BUTENE.FLD" />
|
||||
<None Remove="PPCalculation\REFPROP\FLUIDS\1BUTYNE.FLD" />
|
||||
@@ -184,6 +186,9 @@
|
||||
<Content Include="Assets\Images\Logo.png">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="NLog.config">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="PPCalculation\REFPROP\FLUIDS\13BUTADIENE.FLD">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
||||
@@ -43,10 +43,22 @@ namespace CapMachine.Wpf.Converts
|
||||
//int second = TotalSec % 60;
|
||||
|
||||
//return string.Format("{0}:{1}:{2}", hour, minute, second);
|
||||
////Console.WriteLine(result);
|
||||
//////Console.WriteLine(result);
|
||||
|
||||
TimeSpan TimeInfo = TimeSpan.FromSeconds(TotalSec);
|
||||
return TimeInfo.ToString();
|
||||
//TimeSpan TimeInfo = TimeSpan.FromSeconds(TotalSec);
|
||||
//return TimeInfo.ToString();
|
||||
|
||||
return ConvertSecToTimeStr(TotalSec);
|
||||
}
|
||||
|
||||
private string ConvertSecToTimeStr(int totalSeconds)
|
||||
{
|
||||
int hours = totalSeconds / 3600;
|
||||
int remainingSeconds = totalSeconds % 3600;
|
||||
int minutes = remainingSeconds / 60;
|
||||
int seconds = remainingSeconds % 60;
|
||||
|
||||
return $"{hours}:{minutes:D2}:{seconds:D2}";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -57,8 +69,9 @@ namespace CapMachine.Wpf.Converts
|
||||
{
|
||||
try
|
||||
{
|
||||
TimeSpan TimeInfo = TimeSpan.Parse(timeString);
|
||||
return (int)TimeInfo.TotalSeconds;
|
||||
//TimeSpan TimeInfo = TimeSpan.Parse(timeString);
|
||||
//return (int)TimeInfo.TotalSeconds;
|
||||
return ConvertTimeStrToSecs(timeString);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -68,5 +81,23 @@ namespace CapMachine.Wpf.Converts
|
||||
|
||||
|
||||
}
|
||||
|
||||
public int ConvertTimeStrToSecs(string timeString)
|
||||
{
|
||||
string[] parts = timeString.Split(':');
|
||||
if (parts.Length != 3) return 0;
|
||||
//throw new FormatException("Invalid time format. Use 'hh:mm:ss'");
|
||||
|
||||
if (!int.TryParse(parts[0], out int hours) || hours < 0) return 0;
|
||||
//throw new ArgumentException("小時必須為非負整數");
|
||||
|
||||
if (!int.TryParse(parts[1], out int minutes) || minutes < 0 || minutes >= 60) return 0;
|
||||
//throw new ArgumentException("分鐘必須為 0-59 的整數");
|
||||
|
||||
if (!int.TryParse(parts[2], out int seconds) || seconds < 0 || seconds >= 60) return 0;
|
||||
//throw new ArgumentException("秒必須為 0-59 的整數");
|
||||
|
||||
return hours * 3600 + minutes * 60 + seconds;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -72,6 +72,8 @@ namespace CapMachine.Wpf.Models.Tag
|
||||
get { return _OperateResultSource; }
|
||||
set
|
||||
{
|
||||
if (value!.Content == null) return;
|
||||
|
||||
switch (ValueType)
|
||||
{
|
||||
case DataType.Short:
|
||||
|
||||
@@ -102,6 +102,7 @@ namespace CapMachine.Wpf.Services
|
||||
/// 在程序配置好后就确定要发送哪些数据
|
||||
/// </summary>
|
||||
public List<CanCmdData> CmdData { get; set; } = new List<CanCmdData>();
|
||||
private readonly object _cmdDataLock = new object();
|
||||
|
||||
/// <summary>
|
||||
/// 增加发送的指令数据
|
||||
@@ -128,7 +129,10 @@ namespace CapMachine.Wpf.Services
|
||||
break;
|
||||
}
|
||||
//添加到发送数据集合
|
||||
CmdData.Add(SendCanCmdData);
|
||||
lock (_cmdDataLock)
|
||||
{
|
||||
CmdData.Add(SendCanCmdData);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -141,7 +145,10 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
if (SpeedCanCmdData != null)
|
||||
{
|
||||
SpeedCanCmdData.SignalCmdValue = SpeedData;
|
||||
lock (_cmdDataLock)
|
||||
{
|
||||
SpeedCanCmdData.SignalCmdValue = SpeedData;
|
||||
}
|
||||
}
|
||||
//if (EnableCanCmdData != null)
|
||||
//{
|
||||
@@ -157,7 +164,10 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
if (EnableCanCmdData != null)
|
||||
{
|
||||
EnableCanCmdData.SignalCmdValue = IsEnable ? 1 : 0;
|
||||
lock (_cmdDataLock)
|
||||
{
|
||||
EnableCanCmdData.SignalCmdValue = IsEnable ? 1 : 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -174,7 +184,18 @@ namespace CapMachine.Wpf.Services
|
||||
//更新速度信息
|
||||
UpdateSpeedCmdData(SpeedData);
|
||||
|
||||
ToomossCanDrive.SendCanMsg(CmdData);
|
||||
List<CanCmdData> cmdDataSnapshot;
|
||||
lock (_cmdDataLock)
|
||||
{
|
||||
cmdDataSnapshot = CmdData.Select(x => new CanCmdData
|
||||
{
|
||||
ConfigName = x.ConfigName,
|
||||
MsgName = x.MsgName,
|
||||
SignalName = x.SignalName,
|
||||
SignalCmdValue = x.SignalCmdValue
|
||||
}).ToList();
|
||||
}
|
||||
ToomossCanDrive.SendCanMsg(cmdDataSnapshot);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -189,31 +210,56 @@ namespace CapMachine.Wpf.Services
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 循环发送数据到CAN
|
||||
/// 循环发送数据到CAN
|
||||
/// </summary>
|
||||
public void CycleSendMsg()
|
||||
{
|
||||
if (ToomossCanDrive.OpenState)
|
||||
if (!ToomossCanDrive.OpenState)
|
||||
{
|
||||
if (ToomossCanDrive.IsCycleSend == false)
|
||||
{
|
||||
if (CmdData.Count > 0)
|
||||
{
|
||||
ToomossCanDrive.IsCycleSend = true;
|
||||
ToomossCanDrive.CmdData = CmdData;
|
||||
ToomossCanDrive.StartCycleSendMsg();
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Windows.MessageBox.Show("未发现配置的数据内容", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ToomossCanDrive.IsCycleSend = false;
|
||||
}
|
||||
|
||||
System.Windows.MessageBox.Show("CAN未打开,请先连接CAN", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
return;
|
||||
}
|
||||
|
||||
//停止已在运行的循环
|
||||
if (ToomossCanDrive.IsCycleSend == true)
|
||||
{
|
||||
ToomossCanDrive.StopCycleSendMsg();
|
||||
return;
|
||||
}
|
||||
|
||||
//必要的前置校验:DBC 必须已解析成功,否则原生互操作直接 AccessViolation 闪退
|
||||
if (!ToomossCanDrive.DbcParserState || ToomossCanDrive.DBCHandle == 0)
|
||||
{
|
||||
System.Windows.MessageBox.Show("DBC尚未解析成功,无法循环发送", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
return;
|
||||
}
|
||||
|
||||
//过滤掉 MsgName / SignalName 为空的行(空名传给原生 DBC 解析器是 AV 常见诱因)
|
||||
List<CanCmdData> cmdDataSnapshot;
|
||||
lock (_cmdDataLock)
|
||||
{
|
||||
cmdDataSnapshot = CmdData
|
||||
.Where(x => !string.IsNullOrWhiteSpace(x.MsgName) && !string.IsNullOrWhiteSpace(x.SignalName))
|
||||
.Select(x => new CanCmdData
|
||||
{
|
||||
ConfigName = x.ConfigName,
|
||||
MsgName = x.MsgName,
|
||||
SignalName = x.SignalName,
|
||||
SignalCmdValue = x.SignalCmdValue
|
||||
})
|
||||
.ToList();
|
||||
}
|
||||
|
||||
if (cmdDataSnapshot.Count == 0)
|
||||
{
|
||||
System.Windows.MessageBox.Show("未发现可发送的数据(请检查写入配置的【消息名称】/【信号名称】是否为空)", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
return;
|
||||
}
|
||||
|
||||
ToomossCanDrive.IsCycleSend = true;
|
||||
//传入的是已经过滤的快照副本,避免与 UI 线程共享同一引用
|
||||
ToomossCanDrive.CmdData = cmdDataSnapshot;
|
||||
ToomossCanDrive.StartPrecisionCycleSendMsg();
|
||||
}
|
||||
|
||||
|
||||
@@ -255,10 +301,10 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
if (!ToomossCanDrive.IsCycleRevice) return 0;
|
||||
|
||||
if (ListCanDbcModel.Any(a => a.Name == Name))
|
||||
var dbcModel = ListCanDbcModel.FindFirst(a => a.Name == Name);
|
||||
if (dbcModel != null && !string.IsNullOrWhiteSpace(dbcModel.SignalRtValue))
|
||||
{
|
||||
//double.TryParse(ListCanDbcModel.FindFirst(a => a.Name == Name).SignalRtValue, out double Result1);
|
||||
return double.TryParse(ListCanDbcModel.FindFirst(a => a.Name == Name).SignalRtValue.Split(" ")[0], out double Result) == true ? Result : 0;
|
||||
return double.TryParse(dbcModel.SignalRtValue.Split(" ")[0], out double Result) == true ? Result : 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@@ -274,10 +320,10 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
if (!ToomossCanDrive.IsCycleRevice) return 0;
|
||||
|
||||
if (ListCanDbcModel.Any(a => a.Name == Name))
|
||||
var dbcModel = ListCanDbcModel.FindFirst(a => a.Name == Name);
|
||||
if (dbcModel != null && !string.IsNullOrWhiteSpace(dbcModel.SignalRtValue))
|
||||
{
|
||||
//double.TryParse(ListCanDbcModel.FindFirst(a => a.Name == Name).SignalRtValue, out double Result1);
|
||||
return double.TryParse(ListCanDbcModel.FindFirst(a => a.Name == Name).SignalRtValue.Split(" ")[0], out double Result) == true ? Result : 0;
|
||||
return double.TryParse(dbcModel.SignalRtValue.Split(" ")[0], out double Result) == true ? Result : 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -36,6 +36,7 @@ namespace CapMachine.Wpf.Services
|
||||
public CanDriveService CanDriveService { get; }
|
||||
public LinDriveService LinDriveService { get; }
|
||||
public SysRunService SysRunService { get; }
|
||||
public ILogService LogService { get; }
|
||||
|
||||
/// <summary>
|
||||
/// PLCScanTask扫描Task
|
||||
@@ -112,7 +113,7 @@ namespace CapMachine.Wpf.Services
|
||||
/// </summary>
|
||||
/// <param name="eventAggregator"></param>
|
||||
public MachineRtDataService(IEventAggregator eventAggregator, AlarmService alarmService, ConfigService configService,
|
||||
CanDriveService canDriveService, LinDriveService linDriveService, SysRunService sysRunService)//, AlarmService alarmService
|
||||
CanDriveService canDriveService, LinDriveService linDriveService, SysRunService sysRunService, ILogService logService)//, AlarmService alarmService
|
||||
{
|
||||
//ConcurrentDictionary<DateTime, RecordInfo> keyValuePairs = new ConcurrentDictionary<DateTime, RecordInfo>();
|
||||
|
||||
@@ -130,6 +131,7 @@ namespace CapMachine.Wpf.Services
|
||||
CanDriveService = canDriveService;
|
||||
LinDriveService = linDriveService;
|
||||
SysRunService = sysRunService;
|
||||
LogService = logService;
|
||||
|
||||
//秒触发一次
|
||||
CycleTimer = new System.Timers.Timer(500);
|
||||
@@ -1108,14 +1110,20 @@ namespace CapMachine.Wpf.Services
|
||||
/// </summary>
|
||||
private void RtScanDeviceStart()
|
||||
{
|
||||
LogService.Info("RtScanDeviceStart 开始启动 PLC 扫描线程");
|
||||
PLCScanTask = Task.Run(async () =>
|
||||
{
|
||||
Stopwatch stopwatch = new Stopwatch();
|
||||
int cycleCount = 0;
|
||||
|
||||
while (ThreadEnable)
|
||||
{
|
||||
//await Task.Delay(5);
|
||||
await Task.CompletedTask;
|
||||
cycleCount++;
|
||||
if (cycleCount % 100 == 0)
|
||||
{
|
||||
LogService.Info($"RtScanDeviceStart 循环计数: {cycleCount}");
|
||||
}
|
||||
await Task.Delay(50);
|
||||
|
||||
DiagnosticsTime.Reset();
|
||||
DiagnosticsTime.Start();
|
||||
@@ -1134,6 +1142,7 @@ namespace CapMachine.Wpf.Services
|
||||
// IsShowCount = 0;
|
||||
// IsValueShow = true;
|
||||
//}
|
||||
|
||||
foreach (var itemTag in TagManger.DicTags)
|
||||
{
|
||||
//TagManger.GetTagInfoValueByName<short>(itemTag.Value.Name)!.Value = (short)random.Next(0, 100);
|
||||
@@ -1172,7 +1181,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)CanDriveService.GetDbcSpeedValueBySpeedName("通讯转速"));
|
||||
try
|
||||
{
|
||||
var speedValue = CanDriveService.GetDbcSpeedValueBySpeedName("通讯转速");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)speedValue);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯转速失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1190,7 +1207,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(CanDriveService.GetDbcValueByName("通讯母线电压") * itemTag.Value.Precision));
|
||||
try
|
||||
{
|
||||
var voltageValue = CanDriveService.GetDbcValueByName("通讯母线电压");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(voltageValue * itemTag.Value.Precision));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯母线电压失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1208,7 +1233,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(CanDriveService.GetDbcValueByName("通讯母线电流") * itemTag.Value.Precision));
|
||||
try
|
||||
{
|
||||
var currentValue = CanDriveService.GetDbcValueByName("通讯母线电流");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(currentValue * itemTag.Value.Precision));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯母线电流失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1226,7 +1259,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(CanDriveService.GetDbcValueByName("通讯相电流") * itemTag.Value.Precision));
|
||||
try
|
||||
{
|
||||
var phaseCurrentValue = CanDriveService.GetDbcValueByName("通讯相电流");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(phaseCurrentValue * itemTag.Value.Precision));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯相电流失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1244,7 +1285,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(CanDriveService.GetDbcValueByName("通讯功率") * itemTag.Value.Precision));
|
||||
try
|
||||
{
|
||||
var powerValue = CanDriveService.GetDbcValueByName("通讯功率");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(powerValue * itemTag.Value.Precision));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯功率失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1262,7 +1311,15 @@ namespace CapMachine.Wpf.Services
|
||||
{
|
||||
case CanLinEnum.Can:
|
||||
//通信转速 Dbc中间配置名称的转速数据读取出来 给PLC
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(CanDriveService.GetDbcValueByName("通讯芯片温度") * itemTag.Value.Precision));
|
||||
try
|
||||
{
|
||||
var tempValue = CanDriveService.GetDbcValueByName("通讯芯片温度");
|
||||
SiemensDrive.Write(itemTag.Value.PVAddress, (short)(tempValue * itemTag.Value.Precision));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 读取CAN通讯芯片温度失败: {ex.Message}");
|
||||
}
|
||||
//itemTag.Value.EngPvValue = 0;
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1296,7 +1353,15 @@ namespace CapMachine.Wpf.Services
|
||||
if (itemTag.Value.Group == "CANLIN")
|
||||
{
|
||||
//回读CAN通信的DBC集合数据到集合中
|
||||
itemTag.Value.EngPvValue = CanDriveService.GetDbcValueByName(itemTag.Value.NameNoUnit);
|
||||
try
|
||||
{
|
||||
var dbcValue = CanDriveService.GetDbcValueByName(itemTag.Value.NameNoUnit);
|
||||
itemTag.Value.EngPvValue = dbcValue;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"RtScanDeviceStart 回读CAN数据 {itemTag.Value.NameNoUnit} 失败: {ex.Message}");
|
||||
}
|
||||
}
|
||||
break;
|
||||
case CanLinEnum.Lin:
|
||||
@@ -1437,8 +1502,11 @@ namespace CapMachine.Wpf.Services
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
//LogService.Info($"时间:{DateTime.Now.ToString()}-【Meter】-{ex.Message}");
|
||||
|
||||
LogService.Error($"RtScanDeviceStart 扫描异常 (周期 {cycleCount}): {ex.Message}\r\n堆栈: {ex.StackTrace}");
|
||||
}
|
||||
finally
|
||||
{
|
||||
DiagnosticsTime.Stop();
|
||||
}
|
||||
|
||||
DiagnosticsTime.Stop();
|
||||
|
||||
@@ -39,9 +39,9 @@ namespace CapMachine.Wpf.ViewModels
|
||||
IEventAggregator eventAggregator, IRegionManager regionManager, SysRunService sysRunService,
|
||||
ComActionService actionService,
|
||||
ConfigService configService, CanDriveService canDriveService,
|
||||
IMapper mapper, MachineRtDataService machineRtDataService)
|
||||
IMapper mapper, MachineRtDataService machineRtDataService, ILogService logService)
|
||||
{
|
||||
//LogService = logService;
|
||||
LogService = logService;
|
||||
FreeSql = freeSql;
|
||||
EventAggregator = eventAggregator;
|
||||
RegionManager = regionManager;
|
||||
@@ -52,7 +52,6 @@ namespace CapMachine.Wpf.ViewModels
|
||||
Mapper = mapper;
|
||||
this.MachineRtDataService = machineRtDataService;
|
||||
|
||||
//MachineDataService = machineDataService;
|
||||
DialogService = dialogService;
|
||||
|
||||
WriteNameCbxItems = new ObservableCollection<CbxItems>()
|
||||
@@ -89,6 +88,7 @@ namespace CapMachine.Wpf.ViewModels
|
||||
public CanDriveService CanDriveService { get; }
|
||||
public IMapper Mapper { get; }
|
||||
private MachineRtDataService MachineRtDataService { get; }
|
||||
public ILogService LogService { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 弹窗服务
|
||||
@@ -104,55 +104,58 @@ namespace CapMachine.Wpf.ViewModels
|
||||
/// </summary>
|
||||
private void InitLoadCanConfigPro()
|
||||
{
|
||||
//CAN配置集合数据
|
||||
canLinConfigPros = FreeSql.Select<CanLinConfigPro>().Where(a => a.CANLINInfo == CANLIN.CAN)
|
||||
.Include(a => a.CANConfigExd)
|
||||
.IncludeMany(a => a.CanLinConfigContents)
|
||||
.ToList();
|
||||
|
||||
ListCanLinConfigPro = new ObservableCollection<CanLinConfigPro>(canLinConfigPros);
|
||||
if (SelectCanLinConfigPro != null)
|
||||
try
|
||||
{
|
||||
SelectCanLinConfigPro = canLinConfigPros.Where(a => a.Id == SelectCanLinConfigPro.Id).FirstOrDefault()!;
|
||||
//无数据就返回
|
||||
if (SelectCanLinConfigPro == null) return;
|
||||
|
||||
SelectedCANConfigExdDto = Mapper.Map<CANConfigExdDto>(SelectCanLinConfigPro!.CANConfigExd);
|
||||
LogService.Info("开始加载CAN配置数据");
|
||||
//CAN配置集合数据
|
||||
canLinConfigPros = FreeSql.Select<CanLinConfigPro>().Where(a => a.CANLINInfo == CANLIN.CAN)
|
||||
.Include(a => a.CANConfigExd)
|
||||
.IncludeMany(a => a.CanLinConfigContents)
|
||||
.ToList();
|
||||
|
||||
//配置信息
|
||||
var WirteData = SelectCanLinConfigPro.CanLinConfigContents!.Where(a => a.RWInfo == RW.Write).ToList();
|
||||
if (WirteData != null && WirteData.Count > 0)
|
||||
ListCanLinConfigPro = new ObservableCollection<CanLinConfigPro>(canLinConfigPros);
|
||||
if (SelectCanLinConfigPro != null)
|
||||
{
|
||||
ListWriteCanLinRWConfigDto = new ObservableCollection<CanLinRWConfigDto>(Mapper.Map<List<CanLinRWConfigDto>>(WirteData));
|
||||
SelectCanLinConfigPro = canLinConfigPros.Where(a => a.Id == SelectCanLinConfigPro.Id).FirstOrDefault()!;
|
||||
//无数据就返回
|
||||
if (SelectCanLinConfigPro == null) return;
|
||||
|
||||
SelectedCANConfigExdDto = Mapper.Map<CANConfigExdDto>(SelectCanLinConfigPro!.CANConfigExd);
|
||||
|
||||
//加载把当前的配置信息给指令
|
||||
CanDriveService.CmdData.Clear();
|
||||
foreach (var item in WirteData)
|
||||
//配置信息
|
||||
var WirteData = SelectCanLinConfigPro.CanLinConfigContents!.Where(a => a.RWInfo == RW.Write).ToList();
|
||||
if (WirteData != null && WirteData.Count > 0)
|
||||
{
|
||||
CanDriveService.AddCmdData(new CanCmdData()
|
||||
{
|
||||
ConfigName = item.Name,
|
||||
MsgName = item.MsgFrameName,
|
||||
SignalName = item.SignalName,
|
||||
SignalCmdValue = double.TryParse(item.DefautValue, out double result) == true ? result : 0,
|
||||
});
|
||||
//CanDriveService.CmdData.Add(new CanCmdData()
|
||||
//{
|
||||
// ConfigName = item.Name,
|
||||
// MsgName = item.MsgFrameName,
|
||||
// SignalName = item.SignalName,
|
||||
// SignalCmdValue = double.TryParse(item.DefautValue, out double result) == true ? result : 0,
|
||||
//});
|
||||
}
|
||||
}
|
||||
var ReadData = SelectCanLinConfigPro.CanLinConfigContents!.Where(a => a.RWInfo == RW.Read).ToList();
|
||||
if (ReadData != null && ReadData.Count > 0)
|
||||
{
|
||||
ListReadCanLinRWConfigDto = new ObservableCollection<CanLinRWConfigDto>(Mapper.Map<List<CanLinRWConfigDto>>(ReadData));
|
||||
}
|
||||
ListWriteCanLinRWConfigDto = new ObservableCollection<CanLinRWConfigDto>(Mapper.Map<List<CanLinRWConfigDto>>(WirteData));
|
||||
|
||||
//匹配选中的SelectCanLinConfigPro.CanLinConfigContents和ListCanDbcModel
|
||||
MatchSeletedAndCanDbcModel();
|
||||
//加载把当前的配置信息给指令
|
||||
CanDriveService.CmdData.Clear();
|
||||
foreach (var item in WirteData)
|
||||
{
|
||||
CanDriveService.AddCmdData(new CanCmdData()
|
||||
{
|
||||
ConfigName = item.Name,
|
||||
MsgName = item.MsgFrameName,
|
||||
SignalName = item.SignalName,
|
||||
SignalCmdValue = double.TryParse(item.DefautValue, out double result) == true ? result : 0,
|
||||
});
|
||||
}
|
||||
}
|
||||
var ReadData = SelectCanLinConfigPro.CanLinConfigContents!.Where(a => a.RWInfo == RW.Read).ToList();
|
||||
if (ReadData != null && ReadData.Count > 0)
|
||||
{
|
||||
ListReadCanLinRWConfigDto = new ObservableCollection<CanLinRWConfigDto>(Mapper.Map<List<CanLinRWConfigDto>>(ReadData));
|
||||
}
|
||||
|
||||
//匹配选中的SelectCanLinConfigPro.CanLinConfigContents和ListCanDbcModel
|
||||
MatchSeletedAndCanDbcModel();
|
||||
}
|
||||
LogService.Info("CAN配置数据加载成功");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogService.Error($"加载CAN配置数据失败: {ex.Message}\r\n堆栈: {ex.StackTrace}");
|
||||
System.Windows.MessageBox.Show($"加载CAN配置数据失败: {ex.Message}", "错误", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -373,41 +376,70 @@ namespace CapMachine.Wpf.ViewModels
|
||||
}
|
||||
break;
|
||||
case "Active":
|
||||
|
||||
//激活到取消的状态的判断
|
||||
if (IsCanConfigProActive == true)
|
||||
try
|
||||
{
|
||||
//控件的激活
|
||||
IsCanConfigProActive = !IsCanConfigProActive;
|
||||
//控件的激活配置信息
|
||||
IsCANConfigDatagridActive = !IsCanConfigProActive;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if ((CanDriveService.ToomossCanDrive.OpenState == true && CanDriveService.ToomossCanDrive.DbcParserState == true))
|
||||
{
|
||||
if (SelectCanLinConfigPro != null)
|
||||
LogService.Info("开始执行CAN配置激活操作");
|
||||
//激活到取消的状态的判断
|
||||
if (IsCanConfigProActive == true)
|
||||
{
|
||||
LogService.Info("准备取消激活状态");
|
||||
//控件的激活
|
||||
IsCanConfigProActive = !IsCanConfigProActive;
|
||||
LogService.Info("IsCanConfigProActive已更新");
|
||||
//控件的激活配置信息
|
||||
IsCANConfigDatagridActive = !IsCanConfigProActive;
|
||||
LogService.Info("IsCANConfigDatagridActive已更新");
|
||||
|
||||
//当前使用的CAN 配置信息
|
||||
CanDriveService.InitCanConfig(SelectCanLinConfigPro);
|
||||
LogService.Info("CAN配置已取消激活");
|
||||
return;
|
||||
}
|
||||
|
||||
if ((CanDriveService.ToomossCanDrive.OpenState == true && CanDriveService.ToomossCanDrive.DbcParserState == true))
|
||||
{
|
||||
if (SelectCanLinConfigPro != null)
|
||||
{
|
||||
LogService.Info($"准备激活配置: {SelectCanLinConfigPro.ConfigName}");
|
||||
//控件的激活
|
||||
IsCanConfigProActive = !IsCanConfigProActive;
|
||||
LogService.Info("IsCanConfigProActive已更新为true");
|
||||
//控件的激活配置信息
|
||||
IsCANConfigDatagridActive = !IsCanConfigProActive;
|
||||
LogService.Info("IsCANConfigDatagridActive已更新");
|
||||
|
||||
//当前使用的CAN 配置信息
|
||||
LogService.Info("开始调用InitCanConfig");
|
||||
CanDriveService.InitCanConfig(SelectCanLinConfigPro);
|
||||
LogService.Info("InitCanConfig完成");
|
||||
|
||||
LogService.Info("开始调用InitLoadCanConfigPro");
|
||||
InitLoadCanConfigPro();
|
||||
LogService.Info($"CAN配置激活成功: {SelectCanLinConfigPro.ConfigName}");
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Windows.MessageBox.Show("选中后再操作", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
}
|
||||
|
||||
InitLoadCanConfigPro();
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Windows.MessageBox.Show("选中后再操作", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
System.Windows.MessageBox.Show("请确保CAN连接打开和Dbc解析成功后再激活", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
catch (Exception ex)
|
||||
{
|
||||
System.Windows.MessageBox.Show("请确保CAN连接打开和Dbc解析成功后再激活", "提示", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Hand);
|
||||
LogService.Error($"CAN配置激活操作失败: {ex.Message}\r\n堆栈: {ex.StackTrace}");
|
||||
System.Windows.MessageBox.Show($"CAN配置激活操作失败: {ex.Message}", "错误", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
|
||||
//恢复状态
|
||||
try
|
||||
{
|
||||
IsCanConfigProActive = false;
|
||||
IsCANConfigDatagridActive = true;
|
||||
}
|
||||
catch (Exception restoreEx)
|
||||
{
|
||||
LogService.Error($"恢复状态失败: {restoreEx.Message}");
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
||||
@@ -17,6 +17,7 @@ using System.Collections.ObjectModel;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace CapMachine.Wpf.ViewModels
|
||||
{
|
||||
@@ -1759,7 +1760,16 @@ namespace CapMachine.Wpf.ViewModels
|
||||
// cr.EndEdit();
|
||||
//}
|
||||
|
||||
var dd = par;
|
||||
//if (par is DataGrid dataGrid && dataGrid.SelectedCells.Count > 0)
|
||||
//{
|
||||
// var selectedCell = dataGrid.SelectedCells[0];
|
||||
// string columnHeader = selectedCell.Column.Header?.ToString();
|
||||
// // 处理列头信息
|
||||
//}
|
||||
|
||||
//var dd = par;
|
||||
|
||||
|
||||
//var dd = new SelectedCellsCollection();
|
||||
//if (par is SelectedCellCo selectedCells)
|
||||
//{
|
||||
@@ -15897,8 +15907,16 @@ namespace CapMachine.Wpf.ViewModels
|
||||
{
|
||||
try
|
||||
{
|
||||
TimeSpan TimeInfo = TimeSpan.FromSeconds(TotalSec);
|
||||
return TimeInfo.ToString();
|
||||
//TimeSpan TimeInfo = TimeSpan.FromSeconds(TotalSec);
|
||||
//return TimeInfo.ToString();
|
||||
|
||||
int hours = TotalSec / 3600;
|
||||
int remainingSeconds = TotalSec % 3600;
|
||||
int minutes = remainingSeconds / 60;
|
||||
int seconds = remainingSeconds % 60;
|
||||
|
||||
return $"{hours}:{minutes:D2}:{seconds:D2}";
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -15908,8 +15926,6 @@ namespace CapMachine.Wpf.ViewModels
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
#region 公共库
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -833,9 +833,11 @@
|
||||
<prism:InvokeCommandAction Command="{Binding GridSelectionChangedCmd}" CommandParameter="{Binding ElementName=MainDatagrid, Path=SelectedItem}" />
|
||||
</i:EventTrigger>
|
||||
<i:EventTrigger EventName="SelectedCellsChanged">
|
||||
<prism:InvokeCommandAction Command="{Binding GridSelectedCellsChangedCmd}" CommandParameter="{Binding SelectedCells, ElementName=MainDatagrid}" />
|
||||
<prism:InvokeCommandAction Command="{Binding GridSelectedCellsChangedCmd}" CommandParameter="{Binding ElementName=MainDatagrid}" />
|
||||
</i:EventTrigger>
|
||||
</i:Interaction.Triggers>
|
||||
<!-- CommandParameter="{Binding SelectedCells, ElementName=MainDatagrid}" /> -->
|
||||
|
||||
<!--<prism:InvokeCommandAction Command="{Binding GridSelectionChangedCmd}" CommandParameter="{Binding RelativeSource={RelativeSource AncestorType=DataGrid}}" />-->
|
||||
<!-- CommandParameter="{Binding ElementName=MainDatagrid, Path=SelectedItem}" -->
|
||||
<!--<DataGrid.RowStyle>
|
||||
@@ -1474,7 +1476,7 @@
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
FontWeight="Bold"
|
||||
Text="COND1温度 (℃)" />
|
||||
Text="冷凝器出口水温
(℃)" />
|
||||
</StackPanel>
|
||||
</TabItem.Header>
|
||||
<Controls:MeterConfig
|
||||
@@ -1488,7 +1490,7 @@
|
||||
EditCommand="{Binding ProStepCond1TempEditCmd}"
|
||||
IsTimeOk="{Binding MeterCond1TempExDto.IsTimeOk}"
|
||||
ListMeter="{Binding ListSlopMeterCond1TempItems}"
|
||||
MeterName="COND1温度"
|
||||
MeterName="冷凝器出口水温"
|
||||
MeterSelectedChangedCmd="{Binding MeterCond1TempSlopSelectedChangedCmd}"
|
||||
ParConfigCommand="{Binding MeterCond1TempParConfigCmd}"
|
||||
SelectedMeter="{Binding SelectedSlopCond1Temp, Mode=TwoWay}"
|
||||
@@ -1633,6 +1635,40 @@
|
||||
</TabItem>-->
|
||||
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
Width="90"
|
||||
Margin="-20"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
FontWeight="Bold"
|
||||
Text="吸气混合器温度
(℃)" />
|
||||
</StackPanel>
|
||||
</TabItem.Header>
|
||||
<Controls:MeterConfig
|
||||
Margin="5,5,0,5"
|
||||
AddCommand="{Binding ProStepOS2TempAddCmd}"
|
||||
ConstSlopSelectedIndex="{Binding ProStepOS2TempSwitchConstSlopIndex, Mode=TwoWay}"
|
||||
ConstantSaveCommand="{Binding ProStepOS2TempConstantSaveCmd}"
|
||||
ConstantValue="{Binding SelectedConstOS2TempValue, Mode=TwoWay}"
|
||||
Cycle="{Binding MeterOS2TempExDto.SlopCycle}"
|
||||
DeleteCommand="{Binding ProStepOS2TempDeleteCmd}"
|
||||
EditCommand="{Binding ProStepOS2TempEditCmd}"
|
||||
IsTimeOk="{Binding MeterOS2TempExDto.IsTimeOk}"
|
||||
ListMeter="{Binding ListSlopMeterOS2TempItems}"
|
||||
MeterName="吸气混合器温度"
|
||||
MeterSelectedChangedCmd="{Binding MeterOS2TempSlopSelectedChangedCmd}"
|
||||
ParConfigCommand="{Binding MeterOS2TempParConfigCmd}"
|
||||
SelectedMeter="{Binding SelectedSlopOS2Temp, Mode=TwoWay}"
|
||||
SwitchConstSlopCommand="{Binding MeterOS2TempSwitchConstSlopCmd}"
|
||||
TotalSlopTime="{Binding MeterOS2TempExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
@@ -1668,7 +1704,6 @@
|
||||
TotalSlopTime="{Binding MeterHVVolExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
@@ -1771,39 +1806,7 @@
|
||||
TotalSlopTime="{Binding MeterOS1TempExDto.SlopTime}" />
|
||||
</TabItem>-->
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
Width="90"
|
||||
Margin="-20"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
FontWeight="Bold"
|
||||
Text="OS2温度 (℃)" />
|
||||
</StackPanel>
|
||||
</TabItem.Header>
|
||||
<Controls:MeterConfig
|
||||
Margin="5,5,0,5"
|
||||
AddCommand="{Binding ProStepOS2TempAddCmd}"
|
||||
ConstSlopSelectedIndex="{Binding ProStepOS2TempSwitchConstSlopIndex, Mode=TwoWay}"
|
||||
ConstantSaveCommand="{Binding ProStepOS2TempConstantSaveCmd}"
|
||||
ConstantValue="{Binding SelectedConstOS2TempValue, Mode=TwoWay}"
|
||||
Cycle="{Binding MeterOS2TempExDto.SlopCycle}"
|
||||
DeleteCommand="{Binding ProStepOS2TempDeleteCmd}"
|
||||
EditCommand="{Binding ProStepOS2TempEditCmd}"
|
||||
IsTimeOk="{Binding MeterOS2TempExDto.IsTimeOk}"
|
||||
ListMeter="{Binding ListSlopMeterOS2TempItems}"
|
||||
MeterName="OS2温度"
|
||||
MeterSelectedChangedCmd="{Binding MeterOS2TempSlopSelectedChangedCmd}"
|
||||
ParConfigCommand="{Binding MeterOS2TempParConfigCmd}"
|
||||
SelectedMeter="{Binding SelectedSlopOS2Temp, Mode=TwoWay}"
|
||||
SwitchConstSlopCommand="{Binding MeterOS2TempSwitchConstSlopCmd}"
|
||||
TotalSlopTime="{Binding MeterOS2TempExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
|
||||
<!--<TabItem>
|
||||
<TabItem.Header>
|
||||
@@ -1906,40 +1909,6 @@
|
||||
TotalSlopTime="{Binding MeterPTCPwExDto.SlopTime}" />
|
||||
</TabItem>-->
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
Width="90"
|
||||
Margin="-20"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
FontWeight="Bold"
|
||||
Text="压缩机环境湿度 (%)" />
|
||||
</StackPanel>
|
||||
</TabItem.Header>
|
||||
<Controls:MeterConfig
|
||||
Margin="5,5,0,5"
|
||||
AddCommand="{Binding ProStepEnvRHAddCmd}"
|
||||
ConstSlopSelectedIndex="{Binding ProStepEnvRHSwitchConstSlopIndex, Mode=TwoWay}"
|
||||
ConstantSaveCommand="{Binding ProStepEnvRHConstantSaveCmd}"
|
||||
ConstantValue="{Binding SelectedConstEnvRHValue, Mode=TwoWay}"
|
||||
Cycle="{Binding MeterEnvRHExDto.SlopCycle}"
|
||||
DeleteCommand="{Binding ProStepEnvRHDeleteCmd}"
|
||||
EditCommand="{Binding ProStepEnvRHEditCmd}"
|
||||
IsTimeOk="{Binding MeterEnvRHExDto.IsTimeOk}"
|
||||
ListMeter="{Binding ListSlopMeterEnvRHItems}"
|
||||
MeterName="压缩机环境湿度"
|
||||
MeterSelectedChangedCmd="{Binding MeterEnvRHSlopSelectedChangedCmd}"
|
||||
ParConfigCommand="{Binding MeterEnvRHParConfigCmd}"
|
||||
SelectedMeter="{Binding SelectedSlopEnvRH, Mode=TwoWay}"
|
||||
SwitchConstSlopCommand="{Binding MeterEnvRHSwitchConstSlopCmd}"
|
||||
TotalSlopTime="{Binding MeterEnvRHExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
@@ -1974,6 +1943,40 @@
|
||||
TotalSlopTime="{Binding MeterEnvTempExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<StackPanel
|
||||
Width="90"
|
||||
Margin="-20"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
FontWeight="Bold"
|
||||
Text="压缩机环境湿度 (%)" />
|
||||
</StackPanel>
|
||||
</TabItem.Header>
|
||||
<Controls:MeterConfig
|
||||
Margin="5,5,0,5"
|
||||
AddCommand="{Binding ProStepEnvRHAddCmd}"
|
||||
ConstSlopSelectedIndex="{Binding ProStepEnvRHSwitchConstSlopIndex, Mode=TwoWay}"
|
||||
ConstantSaveCommand="{Binding ProStepEnvRHConstantSaveCmd}"
|
||||
ConstantValue="{Binding SelectedConstEnvRHValue, Mode=TwoWay}"
|
||||
Cycle="{Binding MeterEnvRHExDto.SlopCycle}"
|
||||
DeleteCommand="{Binding ProStepEnvRHDeleteCmd}"
|
||||
EditCommand="{Binding ProStepEnvRHEditCmd}"
|
||||
IsTimeOk="{Binding MeterEnvRHExDto.IsTimeOk}"
|
||||
ListMeter="{Binding ListSlopMeterEnvRHItems}"
|
||||
MeterName="压缩机环境湿度"
|
||||
MeterSelectedChangedCmd="{Binding MeterEnvRHSlopSelectedChangedCmd}"
|
||||
ParConfigCommand="{Binding MeterEnvRHParConfigCmd}"
|
||||
SelectedMeter="{Binding SelectedSlopEnvRH, Mode=TwoWay}"
|
||||
SwitchConstSlopCommand="{Binding MeterEnvRHSwitchConstSlopCmd}"
|
||||
TotalSlopTime="{Binding MeterEnvRHExDto.SlopTime}" />
|
||||
</TabItem>
|
||||
|
||||
</TabControl>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user