From 37e66a188d006007060cc45db9fea894e5013b94 Mon Sep 17 00:00:00 2001 From: wangsr Date: Thu, 14 Sep 2023 13:54:30 +0800 Subject: [PATCH] =?UTF-8?q?add=20-=20=E6=8A=A5=E8=A1=A8plchelper=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E8=AF=BB=E5=8F=96=E5=BA=9F=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Mesnac.Action.ChemicalWeighing.csproj | 5 +- .../DeviceDetail2ReportAction.cs | 453 ++++ .../Entity/BaseControlEntity.cs | 195 ++ .../Test/TestAction.cs | 4 +- .../小料称量/设备细节报表.xml | 28 + Main/MCEdit/Data/MCProject/nodeDataSource.xml | 2 +- Main/MCEdit/Data/MCProject/nodeDevice.xml | 6 +- Main/MCEdit/Data/MCProject/nodeForm/Form1.xml | 2 +- .../MCProject/nodeForm/FormDeviceDetail2.xml | 2132 ++++++++--------- Main/MCEdit/MCEdit.csproj | 3 + 10 files changed, 1743 insertions(+), 1087 deletions(-) create mode 100644 Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/DeviceDetail2ReportAction.cs create mode 100644 Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/Entity/BaseControlEntity.cs create mode 100644 Main/MCEdit/Data/EventConfig/小料称量/设备细节报表.xml diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj index b179395..e7f0863 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj @@ -153,9 +153,6 @@ False ..\..\..\PlugInPlatform\Mesnac.PlugIn.dll - - ..\..\Microsoft.Office.Interop.Excel.dll - @@ -607,6 +604,8 @@ + + diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/DeviceDetail2ReportAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/DeviceDetail2ReportAction.cs new file mode 100644 index 0000000..07484db --- /dev/null +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/DeviceDetail2ReportAction.cs @@ -0,0 +1,453 @@ +using Mesnac.Action.Base; +using Mesnac.Controls.Base; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Mesnac.Action.ChemicalWeighing.Report.DeviceDetail2Report.Entity; + +namespace Mesnac.Action.ChemicalWeighing.Report.DeviceDetail2Report +{ + public class DeviceDetail2ReportAction : DatabaseAction, IAction + { + + List McControllist; + BaseControlEntity BaseControl = new BaseControlEntity(); + public void Run(RuntimeParameter runtime) + { + base.RunIni(runtime); //必须调用 + + McControllist = GetAllDbMCControlsByOption(DbOptionTypes.InitData);//获取所有待初始化控件 + + BaseControl.DAMode = StringToLable("DAMode"); + BaseControl.DAStatus = StringToLable("DAStatus"); + BaseControl.DABatch = StringToLable("DABatch"); + BaseControl.DAStep = StringToLable("DAStep"); + BaseControl.DAStepCode = StringToLable("DAStepCode"); + BaseControl.DATotalTime = StringToLable("DATotalTime"); + BaseControl.DAStepTime = StringToLable("DAStepTime"); + BaseControl.DATemperature = StringToLable("DATemperature"); + BaseControl.DASpeed = StringToLable("DASpeed"); + + BaseControl.DBMode = StringToLable("DBMode"); + BaseControl.DBStatus = StringToLable("DBStatus"); + BaseControl.DBBatch = StringToLable("DBBatch"); + BaseControl.DBStep = StringToLable("DBStep"); + BaseControl.DBStepCode = StringToLable("DBStepCode"); + BaseControl.DBTotalTime = StringToLable("DBTotalTime"); + BaseControl.DBStepTime = StringToLable("DBStepTime"); + BaseControl.DBTemperature = StringToLable("DBTemperature"); + BaseControl.DBSpeed = StringToLable("DBSpeed"); + + BaseControl.DCMode = StringToLable("DCMode"); + BaseControl.DCStatus = StringToLable("DCStatus"); + BaseControl.DCBatch = StringToLable("DCBatch"); + BaseControl.DCStep = StringToLable("DCStep"); + BaseControl.DCStepCode = StringToLable("DCStepCode"); + BaseControl.DCTotalTime = StringToLable("DCTotalTime"); + BaseControl.DCStepTime = StringToLable("DCStepTime"); + BaseControl.DCTemperature = StringToLable("DCTemperature"); + BaseControl.DCSpeed = StringToLable("DCSpeed"); + + BaseControl.DDMode = StringToLable("DDMode"); + BaseControl.DDStatus = StringToLable("DDStatus"); + BaseControl.DDBatch = StringToLable("DDBatch"); + BaseControl.DDStep = StringToLable("DDStep"); + BaseControl.DDStepCode = StringToLable("DDStepCode"); + BaseControl.DDTotalTime = StringToLable("DDTotalTime"); + BaseControl.DDStepTime = StringToLable("DDStepTime"); + BaseControl.DDTemperature = StringToLable("DDTemperature"); + BaseControl.DDSpeed = StringToLable("DDSpeed"); + + + + BaseControl.WAMode = StringToLable("WAMode"); + BaseControl.WAStatus = StringToLable("WAStatus"); + BaseControl.WABatch = StringToLable("WABatch"); + BaseControl.WAStep = StringToLable("WAStep"); + BaseControl.WAStepCode = StringToLable("WAStepCode"); + BaseControl.WATotalTime = StringToLable("WATotalTime"); + BaseControl.WAStepTime = StringToLable("WAStepTime"); + BaseControl.WATemperature = StringToLable("WATemperature"); + BaseControl.WASpeed = StringToLable("WASpeed"); + + BaseControl.WBMode = StringToLable("WBMode"); + BaseControl.WBStatus = StringToLable("WBStatus"); + BaseControl.WBBatch = StringToLable("WBBatch"); + BaseControl.WBStep = StringToLable("WBStep"); + BaseControl.WBStepCode = StringToLable("WBStepCode"); + BaseControl.WBTotalTime = StringToLable("WBTotalTime"); + BaseControl.WBStepTime = StringToLable("WBStepTime"); + BaseControl.WBTemperature = StringToLable("WBTemperature"); + BaseControl.WBSpeed = StringToLable("WBSpeed"); + + BaseControl.WCMode = StringToLable("WCMode"); + BaseControl.WCStatus = StringToLable("WCStatus"); + BaseControl.WCBatch = StringToLable("WCBatch"); + BaseControl.WCStep = StringToLable("WCStep"); + BaseControl.WCStepCode = StringToLable("WCStepCode"); + BaseControl.WCTotalTime = StringToLable("WCTotalTime"); + BaseControl.WCStepTime = StringToLable("WCStepTime"); + BaseControl.WCTemperature = StringToLable("WCTemperature"); + BaseControl.WCSpeed = StringToLable("WCSpeed"); + + BaseControl.WDMode = StringToLable("WDMode"); + BaseControl.WDStatus = StringToLable("WDStatus"); + BaseControl.WDBatch = StringToLable("WDBatch"); + BaseControl.WDStep = StringToLable("WDStep"); + BaseControl.WDStepCode = StringToLable("WDStepCode"); + BaseControl.WDTotalTime = StringToLable("WDTotalTime"); + BaseControl.WDStepTime = StringToLable("WDStepTime"); + BaseControl.WDTemperature = StringToLable("WDTemperature"); + BaseControl.WDSpeed = StringToLable("WDSpeed"); + + BaseControl.WEMode = StringToLable("WEMode"); + BaseControl.WEStatus = StringToLable("WEStatus"); + BaseControl.WEBatch = StringToLable("WEBatch"); + BaseControl.WEStep = StringToLable("WEStep"); + BaseControl.WEStepCode = StringToLable("WEStepCode"); + BaseControl.WETotalTime = StringToLable("WETotalTime"); + BaseControl.WEStepTime = StringToLable("WEStepTime"); + BaseControl.WETemperature = StringToLable("WETemperature"); + BaseControl.WESpeed = StringToLable("WESpeed"); + + BaseControl.WFMode = StringToLable("WFMode"); + BaseControl.WFStatus = StringToLable("WFStatus"); + BaseControl.WFBatch = StringToLable("WFBatch"); + BaseControl.WFStep = StringToLable("WFStep"); + BaseControl.WFStepCode = StringToLable("WFStepCode"); + BaseControl.WFTotalTime = StringToLable("WFTotalTime"); + BaseControl.WFStepTime = StringToLable("WFStepTime"); + BaseControl.WFTemperature = StringToLable("WFTemperature"); + BaseControl.WFSpeed = StringToLable("WFSpeed"); + + BaseControl.WGMode = StringToLable("WGMode"); + BaseControl.WGStatus = StringToLable("WGStatus"); + BaseControl.WGBatch = StringToLable("WGBatch"); + BaseControl.WGStep = StringToLable("WGStep"); + BaseControl.WGStepCode = StringToLable("WGStepCode"); + BaseControl.WGTotalTime = StringToLable("WGTotalTime"); + BaseControl.WGStepTime = StringToLable("WGStepTime"); + BaseControl.WGTemperature = StringToLable("WGTemperature"); + BaseControl.WGSpeed = StringToLable("WGSpeed"); + + BaseControl.WHMode = StringToLable("WHMode"); + BaseControl.WHStatus = StringToLable("WHStatus"); + BaseControl.WHBatch = StringToLable("WHBatch"); + BaseControl.WHStep = StringToLable("WHStep"); + BaseControl.WHStepCode = StringToLable("WHStepCode"); + BaseControl.WHTotalTime = StringToLable("WHTotalTime"); + BaseControl.WHStepTime = StringToLable("WHStepTime"); + BaseControl.WHTemperature = StringToLable("WHTemperature"); + BaseControl.WHSpeed = StringToLable("WHSpeed"); + + + + BaseControl.GAMode = StringToLable("GAMode"); + BaseControl.GAStatus = StringToLable("GAStatus"); + BaseControl.GABatch = StringToLable("GABatch"); + BaseControl.GAStep = StringToLable("GAStep"); + BaseControl.GAStepCode = StringToLable("GAStepCode"); + BaseControl.GATotalTime = StringToLable("GATotalTime"); + BaseControl.GAStepTime = StringToLable("GAStepTime"); + BaseControl.GATemperature = StringToLable("GATemperature"); + BaseControl.GASpeed = StringToLable("GASpeed"); + + BaseControl.GBMode = StringToLable("GBMode"); + BaseControl.GBStatus = StringToLable("GBStatus"); + BaseControl.GBBatch = StringToLable("GBBatch"); + BaseControl.GBStep = StringToLable("GBStep"); + BaseControl.GBStepCode = StringToLable("GBStepCode"); + BaseControl.GBTotalTime = StringToLable("GBTotalTime"); + BaseControl.GBStepTime = StringToLable("GBStepTime"); + BaseControl.GBTemperature = StringToLable("GBTemperature"); + BaseControl.GBSpeed = StringToLable("GBSpeed"); + + BaseControl.GCMode = StringToLable("GCMode"); + BaseControl.GCStatus = StringToLable("GCStatus"); + BaseControl.GCBatch = StringToLable("GCBatch"); + BaseControl.GCStep = StringToLable("GCStep"); + BaseControl.GCStepCode = StringToLable("GCStepCode"); + BaseControl.GCTotalTime = StringToLable("GCTotalTime"); + BaseControl.GCStepTime = StringToLable("GCStepTime"); + BaseControl.GCTemperature = StringToLable("GCTemperature"); + BaseControl.GCSpeed = StringToLable("GCSpeed"); + + BaseControl.GDMode = StringToLable("GDMode"); + BaseControl.GDStatus = StringToLable("GDStatus"); + BaseControl.GDBatch = StringToLable("GDBatch"); + BaseControl.GDStep = StringToLable("GDStep"); + BaseControl.GDStepCode = StringToLable("GDStepCode"); + BaseControl.GDTotalTime = StringToLable("GDTotalTime"); + BaseControl.GDStepTime = StringToLable("GDStepTime"); + BaseControl.GDTemperature = StringToLable("GDTemperature"); + BaseControl.GDSpeed = StringToLable("GDSpeed"); + + BaseControl.GEMode = StringToLable("GEMode"); + BaseControl.GEStatus = StringToLable("GEStatus"); + BaseControl.GEBatch = StringToLable("GEBatch"); + BaseControl.GEStep = StringToLable("GEStep"); + BaseControl.GEStepCode = StringToLable("GEStepCode"); + BaseControl.GETotalTime = StringToLable("GETotalTime"); + BaseControl.GEStepTime = StringToLable("GEStepTime"); + BaseControl.GETemperature = StringToLable("GETemperature"); + BaseControl.GESpeed = StringToLable("GESpeed"); + + BaseControl.GFMode = StringToLable("GFMode"); + BaseControl.GFStatus = StringToLable("GFStatus"); + BaseControl.GFBatch = StringToLable("GFBatch"); + BaseControl.GFStep = StringToLable("GFStep"); + BaseControl.GFStepCode = StringToLable("GFStepCode"); + BaseControl.GFTotalTime = StringToLable("GFTotalTime"); + BaseControl.GFStepTime = StringToLable("GFStepTime"); + BaseControl.GFTemperature = StringToLable("GFTemperature"); + BaseControl.GFSpeed = StringToLable("GFSpeed"); + + BaseControl.GGMode = StringToLable("GGMode"); + BaseControl.GGStatus = StringToLable("GGStatus"); + BaseControl.GGBatch = StringToLable("GGBatch"); + BaseControl.GGStep = StringToLable("GGStep"); + BaseControl.GGStepCode = StringToLable("GGStepCode"); + BaseControl.GGTotalTime = StringToLable("GGTotalTime"); + BaseControl.GGStepTime = StringToLable("GGStepTime"); + BaseControl.GGTemperature = StringToLable("GGTemperature"); + BaseControl.GGSpeed = StringToLable("GGSpeed"); + + BaseControl.GHMode = StringToLable("GHMode"); + BaseControl.GHStatus = StringToLable("GHStatus"); + BaseControl.GHBatch = StringToLable("GHBatch"); + BaseControl.GHStep = StringToLable("GHStep"); + BaseControl.GHStepCode = StringToLable("GHStepCode"); + BaseControl.GHTotalTime = StringToLable("GHTotalTime"); + BaseControl.GHStepTime = StringToLable("GHStepTime"); + BaseControl.GHTemperature = StringToLable("GHTemperature"); + BaseControl.GHSpeed = StringToLable("GHSpeed"); + + + + + Timer timer1 = new Timer(); + timer1.Interval = 10000; + timer1.Enabled = true; + timer1.Tick += new EventHandler(GetDataFromPLCToForm);//添加事件 + } + + /// + /// 从Plc读取数据在lable上显示 + /// + /// + /// + public void GetDataFromPLCToForm(object source, EventArgs e) + { + this.BaseControl.DAMode.MCValue = BasePlcHelper.Instance.Dryer0_mode.NowValue.ToInt(); + this.BaseControl.DAStatus.MCValue = BasePlcHelper.Instance.Dryer0_status.NowValue.ToInt(); + this.BaseControl.DABatch.MCValue = BasePlcHelper.Instance.Dryer0_batch.NowValue.ToInt(); + this.BaseControl.DAStep.MCValue = BasePlcHelper.Instance.Dryer0_step.NowValue.ToInt(); + this.BaseControl.DAStepCode.MCValue = BasePlcHelper.Instance.Dryer0_stepCode.NowValue.ToInt(); + this.BaseControl.DATotalTime.MCValue = BasePlcHelper.Instance.Dryer0_totalTime.NowValue.ToInt(); + this.BaseControl.DAStepTime.MCValue = BasePlcHelper.Instance.Dryer0_stepTime.NowValue.ToInt(); + this.BaseControl.DATemperature.MCValue = BasePlcHelper.Instance.Dryer0_temperature.NowValue.ToFloat(); + this.BaseControl.DASpeed.MCValue = BasePlcHelper.Instance.Dryer0_speed.NowValue.ToFloat(); + + this.BaseControl.DBMode.MCValue = BasePlcHelper.Instance.Dryer1_mode.NowValue.ToInt(); + this.BaseControl.DBStatus.MCValue = BasePlcHelper.Instance.Dryer1_status.NowValue.ToInt(); + this.BaseControl.DBBatch.MCValue = BasePlcHelper.Instance.Dryer1_batch.NowValue.ToInt(); + this.BaseControl.DBStep.MCValue = BasePlcHelper.Instance.Dryer1_step.NowValue.ToInt(); + this.BaseControl.DBStepCode.MCValue = BasePlcHelper.Instance.Dryer1_stepCode.NowValue.ToInt(); + this.BaseControl.DBTotalTime.MCValue = BasePlcHelper.Instance.Dryer1_totalTime.NowValue.ToInt(); + this.BaseControl.DBStepTime.MCValue = BasePlcHelper.Instance.Dryer1_stepTime.NowValue.ToInt(); + this.BaseControl.DBTemperature.MCValue = BasePlcHelper.Instance.Dryer1_temperature.NowValue.ToFloat(); + this.BaseControl.DBSpeed.MCValue = BasePlcHelper.Instance.Dryer1_speed.NowValue.ToFloat(); + + this.BaseControl.DCMode.MCValue = BasePlcHelper.Instance.Dryer2_mode.NowValue.ToInt(); + this.BaseControl.DCStatus.MCValue = BasePlcHelper.Instance.Dryer2_status.NowValue.ToInt(); + this.BaseControl.DCBatch.MCValue = BasePlcHelper.Instance.Dryer2_batch.NowValue.ToInt(); + this.BaseControl.DCStep.MCValue = BasePlcHelper.Instance.Dryer2_step.NowValue.ToInt(); + this.BaseControl.DCStepCode.MCValue = BasePlcHelper.Instance.Dryer2_stepCode.NowValue.ToInt(); + this.BaseControl.DCTotalTime.MCValue = BasePlcHelper.Instance.Dryer2_totalTime.NowValue.ToInt(); + this.BaseControl.DCStepTime.MCValue = BasePlcHelper.Instance.Dryer2_stepTime.NowValue.ToInt(); + this.BaseControl.DCTemperature.MCValue = BasePlcHelper.Instance.Dryer2_temperature.NowValue.ToFloat(); + this.BaseControl.DCSpeed.MCValue = BasePlcHelper.Instance.Dryer2_speed.NowValue.ToFloat(); + + this.BaseControl.DDMode.MCValue = BasePlcHelper.Instance.Dryer3_mode.NowValue.ToInt(); + this.BaseControl.DDStatus.MCValue = BasePlcHelper.Instance.Dryer3_status.NowValue.ToInt(); + this.BaseControl.DDBatch.MCValue = BasePlcHelper.Instance.Dryer3_batch.NowValue.ToInt(); + this.BaseControl.DDStep.MCValue = BasePlcHelper.Instance.Dryer3_step.NowValue.ToInt(); + this.BaseControl.DDStepCode.MCValue = BasePlcHelper.Instance.Dryer3_stepCode.NowValue.ToInt(); + this.BaseControl.DDTotalTime.MCValue = BasePlcHelper.Instance.Dryer3_totalTime.NowValue.ToInt(); + this.BaseControl.DDStepTime.MCValue = BasePlcHelper.Instance.Dryer3_stepTime.NowValue.ToInt(); + this.BaseControl.DDTemperature.MCValue = BasePlcHelper.Instance.Dryer3_temperature.NowValue.ToFloat(); + this.BaseControl.DDSpeed.MCValue = BasePlcHelper.Instance.Dryer3_speed.NowValue.ToFloat(); + + + + this.BaseControl.WAMode.MCValue = BasePlcHelper.Instance.Weter0_mode.NowValue.ToInt(); + this.BaseControl.WAStatus.MCValue = BasePlcHelper.Instance.Weter0_status.NowValue.ToInt(); + this.BaseControl.WABatch.MCValue = BasePlcHelper.Instance.Weter0_batch.NowValue.ToInt(); + this.BaseControl.WAStep.MCValue = BasePlcHelper.Instance.Weter0_step.NowValue.ToInt(); + this.BaseControl.WAStepCode.MCValue = BasePlcHelper.Instance.Weter0_stepCode.NowValue.ToInt(); + this.BaseControl.WATotalTime.MCValue = BasePlcHelper.Instance.Weter0_totalTime.NowValue.ToInt(); + this.BaseControl.WAStepTime.MCValue = BasePlcHelper.Instance.Weter0_stepTime.NowValue.ToInt(); + this.BaseControl.WATemperature.MCValue = BasePlcHelper.Instance.Weter0_temperature.NowValue.ToFloat(); + this.BaseControl.WASpeed.MCValue = BasePlcHelper.Instance.Weter0_speed.NowValue.ToFloat(); + + this.BaseControl.WBMode.MCValue = BasePlcHelper.Instance.Weter1_mode.NowValue.ToInt(); + this.BaseControl.WBStatus.MCValue = BasePlcHelper.Instance.Weter1_status.NowValue.ToInt(); + this.BaseControl.WBBatch.MCValue = BasePlcHelper.Instance.Weter1_batch.NowValue.ToInt(); + this.BaseControl.WBStep.MCValue = BasePlcHelper.Instance.Weter1_step.NowValue.ToInt(); + this.BaseControl.WBStepCode.MCValue = BasePlcHelper.Instance.Weter1_stepCode.NowValue.ToInt(); + this.BaseControl.WBTotalTime.MCValue = BasePlcHelper.Instance.Weter1_totalTime.NowValue.ToInt(); + this.BaseControl.WBStepTime.MCValue = BasePlcHelper.Instance.Weter1_stepTime.NowValue.ToInt(); + this.BaseControl.WBTemperature.MCValue = BasePlcHelper.Instance.Weter1_temperature.NowValue.ToFloat(); + this.BaseControl.WBSpeed.MCValue = BasePlcHelper.Instance.Weter1_speed.NowValue.ToFloat(); + + this.BaseControl.WCMode.MCValue = BasePlcHelper.Instance.Weter2_mode.NowValue.ToInt(); + this.BaseControl.WCStatus.MCValue = BasePlcHelper.Instance.Weter2_status.NowValue.ToInt(); + this.BaseControl.WCBatch.MCValue = BasePlcHelper.Instance.Weter2_batch.NowValue.ToInt(); + this.BaseControl.WCStep.MCValue = BasePlcHelper.Instance.Weter2_step.NowValue.ToInt(); + this.BaseControl.WCStepCode.MCValue = BasePlcHelper.Instance.Weter2_stepCode.NowValue.ToInt(); + this.BaseControl.WCTotalTime.MCValue = BasePlcHelper.Instance.Weter2_totalTime.NowValue.ToInt(); + this.BaseControl.WCStepTime.MCValue = BasePlcHelper.Instance.Weter2_stepTime.NowValue.ToInt(); + this.BaseControl.WCTemperature.MCValue = BasePlcHelper.Instance.Weter2_temperature.NowValue.ToFloat(); + this.BaseControl.WCSpeed.MCValue = BasePlcHelper.Instance.Weter2_speed.NowValue.ToFloat(); + + this.BaseControl.WDMode.MCValue = BasePlcHelper.Instance.Weter3_mode.NowValue.ToInt(); + this.BaseControl.WDStatus.MCValue = BasePlcHelper.Instance.Weter3_status.NowValue.ToInt(); + this.BaseControl.WDBatch.MCValue = BasePlcHelper.Instance.Weter3_batch.NowValue.ToInt(); + this.BaseControl.WDStep.MCValue = BasePlcHelper.Instance.Weter3_step.NowValue.ToInt(); + this.BaseControl.WDStepCode.MCValue = BasePlcHelper.Instance.Weter3_stepCode.NowValue.ToInt(); + this.BaseControl.WDTotalTime.MCValue = BasePlcHelper.Instance.Weter3_totalTime.NowValue.ToInt(); + this.BaseControl.WDStepTime.MCValue = BasePlcHelper.Instance.Weter3_stepTime.NowValue.ToInt(); + this.BaseControl.WDTemperature.MCValue = BasePlcHelper.Instance.Weter3_temperature.NowValue.ToFloat(); + this.BaseControl.WDSpeed.MCValue = BasePlcHelper.Instance.Weter3_speed.NowValue.ToFloat(); + + this.BaseControl.WEMode.MCValue = BasePlcHelper.Instance.Weter4_mode.NowValue.ToInt(); + this.BaseControl.WEStatus.MCValue = BasePlcHelper.Instance.Weter4_status.NowValue.ToInt(); + this.BaseControl.WEBatch.MCValue = BasePlcHelper.Instance.Weter4_batch.NowValue.ToInt(); + this.BaseControl.WEStep.MCValue = BasePlcHelper.Instance.Weter4_step.NowValue.ToInt(); + this.BaseControl.WEStepCode.MCValue = BasePlcHelper.Instance.Weter4_stepCode.NowValue.ToInt(); + this.BaseControl.WETotalTime.MCValue = BasePlcHelper.Instance.Weter4_totalTime.NowValue.ToInt(); + this.BaseControl.WEStepTime.MCValue = BasePlcHelper.Instance.Weter4_stepTime.NowValue.ToInt(); + this.BaseControl.WETemperature.MCValue = BasePlcHelper.Instance.Weter4_temperature.NowValue.ToFloat(); + this.BaseControl.WESpeed.MCValue = BasePlcHelper.Instance.Weter4_speed.NowValue.ToFloat(); + + this.BaseControl.WFMode.MCValue = BasePlcHelper.Instance.Weter5_mode.NowValue.ToInt(); + this.BaseControl.WFStatus.MCValue = BasePlcHelper.Instance.Weter5_status.NowValue.ToInt(); + this.BaseControl.WFBatch.MCValue = BasePlcHelper.Instance.Weter5_batch.NowValue.ToInt(); + this.BaseControl.WFStep.MCValue = BasePlcHelper.Instance.Weter5_step.NowValue.ToInt(); + this.BaseControl.WFStepCode.MCValue = BasePlcHelper.Instance.Weter5_stepCode.NowValue.ToInt(); + this.BaseControl.WFTotalTime.MCValue = BasePlcHelper.Instance.Weter5_totalTime.NowValue.ToInt(); + this.BaseControl.WFStepTime.MCValue = BasePlcHelper.Instance.Weter5_stepTime.NowValue.ToInt(); + this.BaseControl.WFTemperature.MCValue = BasePlcHelper.Instance.Weter5_temperature.NowValue.ToFloat(); + this.BaseControl.WFSpeed.MCValue = BasePlcHelper.Instance.Weter5_speed.NowValue.ToFloat(); + + this.BaseControl.WGMode.MCValue = BasePlcHelper.Instance.Weter6_mode.NowValue.ToInt(); + this.BaseControl.WGStatus.MCValue = BasePlcHelper.Instance.Weter6_status.NowValue.ToInt(); + this.BaseControl.WGBatch.MCValue = BasePlcHelper.Instance.Weter6_batch.NowValue.ToInt(); + this.BaseControl.WGStep.MCValue = BasePlcHelper.Instance.Weter6_step.NowValue.ToInt(); + this.BaseControl.WGStepCode.MCValue = BasePlcHelper.Instance.Weter6_stepCode.NowValue.ToInt(); + this.BaseControl.WGTotalTime.MCValue = BasePlcHelper.Instance.Weter6_totalTime.NowValue.ToInt(); + this.BaseControl.WGStepTime.MCValue = BasePlcHelper.Instance.Weter6_stepTime.NowValue.ToInt(); + this.BaseControl.WGTemperature.MCValue = BasePlcHelper.Instance.Weter6_temperature.NowValue.ToFloat(); + this.BaseControl.WGSpeed.MCValue = BasePlcHelper.Instance.Weter6_speed.NowValue.ToFloat(); + + this.BaseControl.WHMode.MCValue = BasePlcHelper.Instance.Weter7_mode.NowValue.ToInt(); + this.BaseControl.WHStatus.MCValue = BasePlcHelper.Instance.Weter7_status.NowValue.ToInt(); + this.BaseControl.WHBatch.MCValue = BasePlcHelper.Instance.Weter7_batch.NowValue.ToInt(); + this.BaseControl.WHStep.MCValue = BasePlcHelper.Instance.Weter7_step.NowValue.ToInt(); + this.BaseControl.WHStepCode.MCValue = BasePlcHelper.Instance.Weter7_stepCode.NowValue.ToInt(); + this.BaseControl.WHTotalTime.MCValue = BasePlcHelper.Instance.Weter7_totalTime.NowValue.ToInt(); + this.BaseControl.WHStepTime.MCValue = BasePlcHelper.Instance.Weter7_stepTime.NowValue.ToInt(); + this.BaseControl.WHTemperature.MCValue = BasePlcHelper.Instance.Weter7_temperature.NowValue.ToFloat(); + this.BaseControl.WHSpeed.MCValue = BasePlcHelper.Instance.Weter7_speed.NowValue.ToFloat(); + + + this.BaseControl.GAMode.MCValue = BasePlcHelper.Instance.Gelater0_mode.NowValue.ToInt(); + this.BaseControl.GAStatus.MCValue = BasePlcHelper.Instance.Gelater0_status.NowValue.ToInt(); + this.BaseControl.GABatch.MCValue = BasePlcHelper.Instance.Gelater0_batch.NowValue.ToInt(); + this.BaseControl.GAStep.MCValue = BasePlcHelper.Instance.Gelater0_step.NowValue.ToInt(); + this.BaseControl.GAStepCode.MCValue = BasePlcHelper.Instance.Gelater0_stepCode.NowValue.ToInt(); + this.BaseControl.GATotalTime.MCValue = BasePlcHelper.Instance.Gelater0_totalTime.NowValue.ToInt(); + this.BaseControl.GAStepTime.MCValue = BasePlcHelper.Instance.Gelater0_stepTime.NowValue.ToInt(); + this.BaseControl.GATemperature.MCValue = BasePlcHelper.Instance.Gelater0_temperature.NowValue.ToFloat(); + this.BaseControl.GASpeed.MCValue = BasePlcHelper.Instance.Gelater0_speed.NowValue.ToFloat(); + + this.BaseControl.GBMode.MCValue = BasePlcHelper.Instance.Gelater1_mode.NowValue.ToInt(); + this.BaseControl.GBStatus.MCValue = BasePlcHelper.Instance.Gelater1_status.NowValue.ToInt(); + this.BaseControl.GBBatch.MCValue = BasePlcHelper.Instance.Gelater1_batch.NowValue.ToInt(); + this.BaseControl.GBStep.MCValue = BasePlcHelper.Instance.Gelater1_step.NowValue.ToInt(); + this.BaseControl.GBStepCode.MCValue = BasePlcHelper.Instance.Gelater1_stepCode.NowValue.ToInt(); + this.BaseControl.GBTotalTime.MCValue = BasePlcHelper.Instance.Gelater1_totalTime.NowValue.ToInt(); + this.BaseControl.GBStepTime.MCValue = BasePlcHelper.Instance.Gelater1_stepTime.NowValue.ToInt(); + this.BaseControl.GBTemperature.MCValue = BasePlcHelper.Instance.Gelater1_temperature.NowValue.ToFloat(); + this.BaseControl.GBSpeed.MCValue = BasePlcHelper.Instance.Gelater1_speed.NowValue.ToFloat(); + + this.BaseControl.GCMode.MCValue = BasePlcHelper.Instance.Gelater2_mode.NowValue.ToInt(); + this.BaseControl.GCStatus.MCValue = BasePlcHelper.Instance.Gelater2_status.NowValue.ToInt(); + this.BaseControl.GCBatch.MCValue = BasePlcHelper.Instance.Gelater2_batch.NowValue.ToInt(); + this.BaseControl.GCStep.MCValue = BasePlcHelper.Instance.Gelater2_step.NowValue.ToInt(); + this.BaseControl.GCStepCode.MCValue = BasePlcHelper.Instance.Gelater2_stepCode.NowValue.ToInt(); + this.BaseControl.GCTotalTime.MCValue = BasePlcHelper.Instance.Gelater2_totalTime.NowValue.ToInt(); + this.BaseControl.GCStepTime.MCValue = BasePlcHelper.Instance.Gelater2_stepTime.NowValue.ToInt(); + this.BaseControl.GCTemperature.MCValue = BasePlcHelper.Instance.Gelater2_temperature.NowValue.ToFloat(); + this.BaseControl.GCSpeed.MCValue = BasePlcHelper.Instance.Gelater2_speed.NowValue.ToFloat(); + + this.BaseControl.GDMode.MCValue = BasePlcHelper.Instance.Gelater3_mode.NowValue.ToInt(); + this.BaseControl.GDStatus.MCValue = BasePlcHelper.Instance.Gelater3_status.NowValue.ToInt(); + this.BaseControl.GDBatch.MCValue = BasePlcHelper.Instance.Gelater3_batch.NowValue.ToInt(); + this.BaseControl.GDStep.MCValue = BasePlcHelper.Instance.Gelater3_step.NowValue.ToInt(); + this.BaseControl.GDStepCode.MCValue = BasePlcHelper.Instance.Gelater3_stepCode.NowValue.ToInt(); + this.BaseControl.GDTotalTime.MCValue = BasePlcHelper.Instance.Gelater3_totalTime.NowValue.ToInt(); + this.BaseControl.GDStepTime.MCValue = BasePlcHelper.Instance.Gelater3_stepTime.NowValue.ToInt(); + this.BaseControl.GDTemperature.MCValue = BasePlcHelper.Instance.Gelater3_temperature.NowValue.ToFloat(); + this.BaseControl.GDSpeed.MCValue = BasePlcHelper.Instance.Gelater3_speed.NowValue.ToFloat(); + + this.BaseControl.GEMode.MCValue = BasePlcHelper.Instance.Gelater4_mode.NowValue.ToInt(); + this.BaseControl.GEStatus.MCValue = BasePlcHelper.Instance.Gelater4_status.NowValue.ToInt(); + this.BaseControl.GEBatch.MCValue = BasePlcHelper.Instance.Gelater4_batch.NowValue.ToInt(); + this.BaseControl.GEStep.MCValue = BasePlcHelper.Instance.Gelater4_step.NowValue.ToInt(); + this.BaseControl.GEStepCode.MCValue = BasePlcHelper.Instance.Gelater4_stepCode.NowValue.ToInt(); + this.BaseControl.GETotalTime.MCValue = BasePlcHelper.Instance.Gelater4_totalTime.NowValue.ToInt(); + this.BaseControl.GEStepTime.MCValue = BasePlcHelper.Instance.Gelater4_stepTime.NowValue.ToInt(); + this.BaseControl.GETemperature.MCValue = BasePlcHelper.Instance.Gelater4_temperature.NowValue.ToFloat(); + this.BaseControl.GESpeed.MCValue = BasePlcHelper.Instance.Gelater4_speed.NowValue.ToFloat(); + + this.BaseControl.GFMode.MCValue = BasePlcHelper.Instance.Gelater5_mode.NowValue.ToInt(); + this.BaseControl.GFStatus.MCValue = BasePlcHelper.Instance.Gelater5_status.NowValue.ToInt(); + this.BaseControl.GFBatch.MCValue = BasePlcHelper.Instance.Gelater5_batch.NowValue.ToInt(); + this.BaseControl.GFStep.MCValue = BasePlcHelper.Instance.Gelater5_step.NowValue.ToInt(); + this.BaseControl.GFStepCode.MCValue = BasePlcHelper.Instance.Gelater5_stepCode.NowValue.ToInt(); + this.BaseControl.GFTotalTime.MCValue = BasePlcHelper.Instance.Gelater5_totalTime.NowValue.ToInt(); + this.BaseControl.GFStepTime.MCValue = BasePlcHelper.Instance.Gelater5_stepTime.NowValue.ToInt(); + this.BaseControl.GFTemperature.MCValue = BasePlcHelper.Instance.Gelater5_temperature.NowValue.ToFloat(); + this.BaseControl.GFSpeed.MCValue = BasePlcHelper.Instance.Gelater5_speed.NowValue.ToFloat(); + + this.BaseControl.GGMode.MCValue = BasePlcHelper.Instance.Gelater6_mode.NowValue.ToInt(); + this.BaseControl.GGStatus.MCValue = BasePlcHelper.Instance.Gelater6_status.NowValue.ToInt(); + this.BaseControl.GGBatch.MCValue = BasePlcHelper.Instance.Gelater6_batch.NowValue.ToInt(); + this.BaseControl.GGStep.MCValue = BasePlcHelper.Instance.Gelater6_step.NowValue.ToInt(); + this.BaseControl.GGStepCode.MCValue = BasePlcHelper.Instance.Gelater6_stepCode.NowValue.ToInt(); + this.BaseControl.GGTotalTime.MCValue = BasePlcHelper.Instance.Gelater6_totalTime.NowValue.ToInt(); + this.BaseControl.GGStepTime.MCValue = BasePlcHelper.Instance.Gelater6_stepTime.NowValue.ToInt(); + this.BaseControl.GGTemperature.MCValue = BasePlcHelper.Instance.Gelater6_temperature.NowValue.ToFloat(); + this.BaseControl.GGSpeed.MCValue = BasePlcHelper.Instance.Gelater6_speed.NowValue.ToFloat(); + + this.BaseControl.GHMode.MCValue = BasePlcHelper.Instance.Gelater7_mode.NowValue.ToInt(); + this.BaseControl.GHStatus.MCValue = BasePlcHelper.Instance.Gelater7_status.NowValue.ToInt(); + this.BaseControl.GHBatch.MCValue = BasePlcHelper.Instance.Gelater7_batch.NowValue.ToInt(); + this.BaseControl.GHStep.MCValue = BasePlcHelper.Instance.Gelater7_step.NowValue.ToInt(); + this.BaseControl.GHStepCode.MCValue = BasePlcHelper.Instance.Gelater7_stepCode.NowValue.ToInt(); + this.BaseControl.GHTotalTime.MCValue = BasePlcHelper.Instance.Gelater7_totalTime.NowValue.ToInt(); + this.BaseControl.GHStepTime.MCValue = BasePlcHelper.Instance.Gelater7_stepTime.NowValue.ToInt(); + this.BaseControl.GHTemperature.MCValue = BasePlcHelper.Instance.Gelater7_temperature.NowValue.ToFloat(); + this.BaseControl.GHSpeed.MCValue = BasePlcHelper.Instance.Gelater7_speed.NowValue.ToFloat(); + } + + public IBaseControl StringToLable(string lableName) + { + return McControllist.Where(t => t.BaseControl.MCKey != null && t.BaseControl.MCKey == lableName).FirstOrDefault().BaseControl; + } + } +} diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/Entity/BaseControlEntity.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/Entity/BaseControlEntity.cs new file mode 100644 index 0000000..d029652 --- /dev/null +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Report/DeviceDetail2Report/Entity/BaseControlEntity.cs @@ -0,0 +1,195 @@ +using Mesnac.Controls.Base; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Mesnac.Action.ChemicalWeighing.Report.DeviceDetail2Report.Entity +{ + public class BaseControlEntity + { + public IBaseControl DAMode { get; set; } + public IBaseControl DAStatus { get; set; } + public IBaseControl DABatch { get; set; } + public IBaseControl DAStep { get; set; } + public IBaseControl DAStepCode { get; set; } + public IBaseControl DATotalTime { get; set; } + public IBaseControl DAStepTime { get; set; } + public IBaseControl DATemperature { get; set; } + public IBaseControl DASpeed { get; set; } + public IBaseControl DBMode { get; set; } + public IBaseControl DBStatus { get; set; } + public IBaseControl DBBatch { get; set; } + public IBaseControl DBStep { get; set; } + public IBaseControl DBStepCode { get; set; } + public IBaseControl DBTotalTime { get; set; } + public IBaseControl DBStepTime { get; set; } + public IBaseControl DBTemperature { get; set; } + public IBaseControl DBSpeed { get; set; } + public IBaseControl DCMode { get; set; } + public IBaseControl DCStatus { get; set; } + public IBaseControl DCBatch { get; set; } + public IBaseControl DCStep { get; set; } + public IBaseControl DCStepCode { get; set; } + public IBaseControl DCTotalTime { get; set; } + public IBaseControl DCStepTime { get; set; } + public IBaseControl DCTemperature { get; set; } + public IBaseControl DCSpeed { get; set; } + public IBaseControl DDMode { get; set; } + public IBaseControl DDStatus { get; set; } + public IBaseControl DDBatch { get; set; } + public IBaseControl DDStep { get; set; } + public IBaseControl DDStepCode { get; set; } + public IBaseControl DDTotalTime { get; set; } + public IBaseControl DDStepTime { get; set; } + public IBaseControl DDTemperature { get; set; } + public IBaseControl DDSpeed { get; set; } + + public IBaseControl WAMode { get; set; } + public IBaseControl WAStatus { get; set; } + public IBaseControl WABatch { get; set; } + public IBaseControl WAStep { get; set; } + public IBaseControl WAStepCode { get; set; } + public IBaseControl WATotalTime { get; set; } + public IBaseControl WAStepTime { get; set; } + public IBaseControl WATemperature { get; set; } + public IBaseControl WASpeed { get; set; } + public IBaseControl WBMode { get; set; } + public IBaseControl WBStatus { get; set; } + public IBaseControl WBBatch { get; set; } + public IBaseControl WBStep { get; set; } + public IBaseControl WBStepCode { get; set; } + public IBaseControl WBTotalTime { get; set; } + public IBaseControl WBStepTime { get; set; } + public IBaseControl WBTemperature { get; set; } + public IBaseControl WBSpeed { get; set; } + public IBaseControl WCMode { get; set; } + public IBaseControl WCStatus { get; set; } + public IBaseControl WCBatch { get; set; } + public IBaseControl WCStep { get; set; } + public IBaseControl WCStepCode { get; set; } + public IBaseControl WCTotalTime { get; set; } + public IBaseControl WCStepTime { get; set; } + public IBaseControl WCTemperature { get; set; } + public IBaseControl WCSpeed { get; set; } + public IBaseControl WDMode { get; set; } + public IBaseControl WDStatus { get; set; } + public IBaseControl WDBatch { get; set; } + public IBaseControl WDStep { get; set; } + public IBaseControl WDStepCode { get; set; } + public IBaseControl WDTotalTime { get; set; } + public IBaseControl WDStepTime { get; set; } + public IBaseControl WDTemperature { get; set; } + public IBaseControl WDSpeed { get; set; } + public IBaseControl WEMode { get; set; } + public IBaseControl WEStatus { get; set; } + public IBaseControl WEBatch { get; set; } + public IBaseControl WEStep { get; set; } + public IBaseControl WEStepCode { get; set; } + public IBaseControl WETotalTime { get; set; } + public IBaseControl WEStepTime { get; set; } + public IBaseControl WETemperature { get; set; } + public IBaseControl WESpeed { get; set; } + public IBaseControl WFMode { get; set; } + public IBaseControl WFStatus { get; set; } + public IBaseControl WFBatch { get; set; } + public IBaseControl WFStep { get; set; } + public IBaseControl WFStepCode { get; set; } + public IBaseControl WFTotalTime { get; set; } + public IBaseControl WFStepTime { get; set; } + public IBaseControl WFTemperature { get; set; } + public IBaseControl WFSpeed { get; set; } + public IBaseControl WGMode { get; set; } + public IBaseControl WGStatus { get; set; } + public IBaseControl WGBatch { get; set; } + public IBaseControl WGStep { get; set; } + public IBaseControl WGStepCode { get; set; } + public IBaseControl WGTotalTime { get; set; } + public IBaseControl WGStepTime { get; set; } + public IBaseControl WGTemperature { get; set; } + public IBaseControl WGSpeed { get; set; } + public IBaseControl WHMode { get; set; } + public IBaseControl WHStatus { get; set; } + public IBaseControl WHBatch { get; set; } + public IBaseControl WHStep { get; set; } + public IBaseControl WHStepCode { get; set; } + public IBaseControl WHTotalTime { get; set; } + public IBaseControl WHStepTime { get; set; } + public IBaseControl WHTemperature { get; set; } + public IBaseControl WHSpeed { get; set; } + + public IBaseControl GAMode { get; set; } + public IBaseControl GAStatus { get; set; } + public IBaseControl GABatch { get; set; } + public IBaseControl GAStep { get; set; } + public IBaseControl GAStepCode { get; set; } + public IBaseControl GATotalTime { get; set; } + public IBaseControl GAStepTime { get; set; } + public IBaseControl GATemperature { get; set; } + public IBaseControl GASpeed { get; set; } + public IBaseControl GBMode { get; set; } + public IBaseControl GBStatus { get; set; } + public IBaseControl GBBatch { get; set; } + public IBaseControl GBStep { get; set; } + public IBaseControl GBStepCode { get; set; } + public IBaseControl GBTotalTime { get; set; } + public IBaseControl GBStepTime { get; set; } + public IBaseControl GBTemperature { get; set; } + public IBaseControl GBSpeed { get; set; } + public IBaseControl GCMode { get; set; } + public IBaseControl GCStatus { get; set; } + public IBaseControl GCBatch { get; set; } + public IBaseControl GCStep { get; set; } + public IBaseControl GCStepCode { get; set; } + public IBaseControl GCTotalTime { get; set; } + public IBaseControl GCStepTime { get; set; } + public IBaseControl GCTemperature { get; set; } + public IBaseControl GCSpeed { get; set; } + public IBaseControl GDMode { get; set; } + public IBaseControl GDStatus { get; set; } + public IBaseControl GDBatch { get; set; } + public IBaseControl GDStep { get; set; } + public IBaseControl GDStepCode { get; set; } + public IBaseControl GDTotalTime { get; set; } + public IBaseControl GDStepTime { get; set; } + public IBaseControl GDTemperature { get; set; } + public IBaseControl GDSpeed { get; set; } + public IBaseControl GEMode { get; set; } + public IBaseControl GEStatus { get; set; } + public IBaseControl GEBatch { get; set; } + public IBaseControl GEStep { get; set; } + public IBaseControl GEStepCode { get; set; } + public IBaseControl GETotalTime { get; set; } + public IBaseControl GEStepTime { get; set; } + public IBaseControl GETemperature { get; set; } + public IBaseControl GESpeed { get; set; } + public IBaseControl GFMode { get; set; } + public IBaseControl GFStatus { get; set; } + public IBaseControl GFBatch { get; set; } + public IBaseControl GFStep { get; set; } + public IBaseControl GFStepCode { get; set; } + public IBaseControl GFTotalTime { get; set; } + public IBaseControl GFStepTime { get; set; } + public IBaseControl GFTemperature { get; set; } + public IBaseControl GFSpeed { get; set; } + public IBaseControl GGMode { get; set; } + public IBaseControl GGStatus { get; set; } + public IBaseControl GGBatch { get; set; } + public IBaseControl GGStep { get; set; } + public IBaseControl GGStepCode { get; set; } + public IBaseControl GGTotalTime { get; set; } + public IBaseControl GGStepTime { get; set; } + public IBaseControl GGTemperature { get; set; } + public IBaseControl GGSpeed { get; set; } + public IBaseControl GHMode { get; set; } + public IBaseControl GHStatus { get; set; } + public IBaseControl GHBatch { get; set; } + public IBaseControl GHStep { get; set; } + public IBaseControl GHStepCode { get; set; } + public IBaseControl GHTotalTime { get; set; } + public IBaseControl GHStepTime { get; set; } + public IBaseControl GHTemperature { get; set; } + public IBaseControl GHSpeed { get; set; } + } +} diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Test/TestAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Test/TestAction.cs index 0a919a3..b827073 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Test/TestAction.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Test/TestAction.cs @@ -35,7 +35,7 @@ namespace Mesnac.Action.ChemicalWeighing.Test { this.startdate.MCValue = DateTime.Now.ToString(); } - + List mcControllist; IBaseControl startdate; public void Run(RuntimeParameter runtime) { @@ -60,7 +60,7 @@ namespace Mesnac.Action.ChemicalWeighing.Test - List mcControllist = GetAllDbMCControlsByOption(DbOptionTypes.None);//获取所有待初始化控件 + mcControllist = GetAllDbMCControlsByOption(DbOptionTypes.None);//获取所有待初始化控件 startdate = mcControllist.Where(t => t.BaseControl.MCKey != null && t.BaseControl.MCKey.ToLower() == "MCLabel153".ToLower()).FirstOrDefault().BaseControl; diff --git a/Main/MCEdit/Data/EventConfig/小料称量/设备细节报表.xml b/Main/MCEdit/Data/EventConfig/小料称量/设备细节报表.xml new file mode 100644 index 0000000..677009a --- /dev/null +++ b/Main/MCEdit/Data/EventConfig/小料称量/设备细节报表.xml @@ -0,0 +1,28 @@ + + + + + + 窗体初始化 + 窗体初始化 + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Main/MCEdit/Data/MCProject/nodeDataSource.xml b/Main/MCEdit/Data/MCProject/nodeDataSource.xml index 3600a0d..32d0662 100644 --- a/Main/MCEdit/Data/MCProject/nodeDataSource.xml +++ b/Main/MCEdit/Data/MCProject/nodeDataSource.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/Main/MCEdit/Data/MCProject/nodeDevice.xml b/Main/MCEdit/Data/MCProject/nodeDevice.xml index 6718b7e..6417dfa 100644 --- a/Main/MCEdit/Data/MCProject/nodeDevice.xml +++ b/Main/MCEdit/Data/MCProject/nodeDevice.xml @@ -13,7 +13,7 @@ - + @@ -3958,7 +3958,7 @@ - + @@ -5291,7 +5291,7 @@ - + diff --git a/Main/MCEdit/Data/MCProject/nodeForm/Form1.xml b/Main/MCEdit/Data/MCProject/nodeForm/Form1.xml index e31a537..7aa3fda 100644 --- a/Main/MCEdit/Data/MCProject/nodeForm/Form1.xml +++ b/Main/MCEdit/Data/MCProject/nodeForm/Form1.xml @@ -736,7 +736,7 @@ 1769, 1061 - AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAEAAAACAAAABwMAAAAAAQAAAAQAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAJBAAAAA0DBQQAAAAhTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uAwAAABU8R1VJRD5rX19CYWNraW5nRmllbGQVPE5hbWU+a19fQmFja2luZ0ZpZWxkFzxSZW1hcms+a19fQmFja2luZ0ZpZWxkAQEBAgAAAAYFAAAAIGI0NWRkODA1MzMyMjQwZWE4YWFkNWVmYjM1ZDUyOGJmBgYAAAAM5by55Ye656qX5L2TBgcAAAAM5by55Ye656qX5L2TCw== + AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAEAAAAIAAAABwMAAAAAAQAAAAQAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAJBAAAAA0DBQQAAAAhTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uAwAAABU8R1VJRD5rX19CYWNraW5nRmllbGQVPE5hbWU+a19fQmFja2luZ0ZpZWxkFzxSZW1hcms+a19fQmFja2luZ0ZpZWxkAQEBAgAAAAYFAAAAIGI0NWRkODA1MzMyMjQwZWE4YWFkNWVmYjM1ZDUyOGJmBgYAAAAM5by55Ye656qX5L2TBgcAAAAM5by55Ye656qX5L2TCw== AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAAAAAAAAAAABwMAAAAAAQAAAAAAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAL diff --git a/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml b/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml index 89d8f7d..c4a7a86 100644 --- a/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml +++ b/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml @@ -2,568 +2,568 @@ - + Red DarkGray - + DDSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 207 - MCLabel669 + 543, 267 + MCLabel778 11, 12 - + Red DarkGray - + DDTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 147 - MCLabel670 + 488, 267 + MCLabel779 11, 12 - + Red DarkGray - + DDStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 87 - MCLabel671 + 430, 267 + MCLabel780 11, 12 - + Red DarkGray - + DDTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 207 - MCLabel672 + 375, 267 + MCLabel781 11, 12 - + Red DarkGray - + DDStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 147 - MCLabel673 + 317, 267 + MCLabel782 11, 12 - + Red DarkGray - + DDStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 87 - MCLabel674 + 261, 267 + MCLabel783 11, 12 - + Red DarkGray - + DDBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 267 - MCLabel679 + 206, 267 + MCLabel784 11, 12 - + Red DarkGray - + DDStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 267 - MCLabel684 + 151, 267 + MCLabel785 11, 12 - + Red DarkGray - + DDMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 207 - MCLabel685 + 100, 267 + MCLabel786 11, 12 - + Red DarkGray - + DCSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 147 - MCLabel686 + 543, 207 + MCLabel769 11, 12 - + Red DarkGray - + DCTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 87 - MCLabel687 + 488, 207 + MCLabel770 11, 12 - + Red DarkGray - + DCStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 207 - MCLabel688 + 430, 207 + MCLabel771 11, 12 - + Red DarkGray - + DCTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 147 - MCLabel689 + 375, 207 + MCLabel772 11, 12 - + Red DarkGray - + DCStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 87 - MCLabel690 + 317, 207 + MCLabel773 11, 12 - + Red DarkGray - + DCStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 207 - MCLabel691 + 261, 207 + MCLabel774 11, 12 - + Red DarkGray - + DCBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 207 - MCLabel692 + 206, 207 + MCLabel775 11, 12 - + Red DarkGray - + DCStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 147 - MCLabel693 + 151, 207 + MCLabel776 11, 12 - + Red DarkGray - + DCMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 147 - MCLabel694 + 100, 207 + MCLabel777 11, 12 - + Red DarkGray - + DBSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 87 - MCLabel695 + 543, 147 + MCLabel760 11, 12 - + Red DarkGray - + DBTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 87 - MCLabel696 + 488, 147 + MCLabel761 11, 12 - + Red DarkGray - + DBStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 207 - MCLabel697 + 430, 147 + MCLabel762 11, 12 - + Red DarkGray - + DBTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 147 - MCLabel698 + 375, 147 + MCLabel763 11, 12 - + Red DarkGray - + DBStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 87 - MCLabel699 + 317, 147 + MCLabel764 11, 12 - + Red DarkGray - + DBStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 207 - MCLabel700 + 261, 147 + MCLabel765 11, 12 - + Red DarkGray - + DBBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 207 - MCLabel701 + 206, 147 + MCLabel766 11, 12 - + Red DarkGray - + DBStatus False - None + InitData True True MiddleRight @@ -571,21 +571,21 @@ Transparent ButtonHighlight 151, 147 - MCLabel702 + MCLabel767 11, 12 - + Red DarkGray - + DBMode False - None + InitData True True MiddleRight @@ -593,208 +593,208 @@ Transparent ButtonHighlight 100, 147 - MCLabel703 + MCLabel768 11, 12 - + Red DarkGray - + DASpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 87 - MCLabel704 + 543, 87 + MCLabel671 11, 12 - + Red DarkGray - + DATemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 87 - MCLabel705 + 488, 87 + MCLabel674 11, 12 - + Red DarkGray - + DAStepTime False - None + InitData True True MiddleRight - 参数名称 + 0 Transparent ButtonHighlight - 20, 55 - MCLabel706 - 53, 12 + 430, 87 + MCLabel687 + 11, 12 - + Red DarkGray - + DATotalTime False - None + InitData True True MiddleRight - 状态 + 0 Transparent ButtonHighlight - 151, 55 - MCLabel707 - 29, 12 + 375, 87 + MCLabel690 + 11, 12 - + Red DarkGray - + DAStepCode False - None + InitData True True MiddleRight - 当前模式 + 0 Transparent ButtonHighlight - 93, 55 - MCLabel708 - 53, 12 + 317, 87 + MCLabel695 + 11, 12 - + Red DarkGray - + DAStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 267 - MCLabel717 + 261, 87 + MCLabel696 11, 12 - + Red DarkGray - + DABatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 267 - MCLabel722 + 206, 87 + MCLabel699 11, 12 - + Red DarkGray - + DAStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 267 - MCLabel731 + 151, 87 + MCLabel704 11, 12 - + Red DarkGray - + DAMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 267 - MCLabel732 + 100, 87 + MCLabel705 11, 12 - + Red @@ -808,14 +808,15 @@ None True True - D + MiddleRight + 参数名称 Transparent ButtonHighlight - 56, 267 - MCLabel733 - 11, 12 + 20, 55 + MCLabel706 + 53, 12 - + Red @@ -829,14 +830,15 @@ None True True - C + MiddleRight + 状态 Transparent ButtonHighlight - 56, 207 - MCLabel734 - 11, 12 + 151, 55 + MCLabel707 + 29, 12 - + Red @@ -851,19 +853,14 @@ True True MiddleRight - 0 + 当前模式 Transparent ButtonHighlight - 206, 267 - MCLabel739 - 11, 12 - - - 79, 48 - Line2 - 1, 271 + 93, 55 + MCLabel708 + 53, 12 - + Red @@ -877,15 +874,14 @@ None True True - MiddleRight - 0 + D Transparent ButtonHighlight - 151, 267 - MCLabel748 + 56, 267 + MCLabel733 11, 12 - + Red @@ -899,14 +895,18 @@ None True True - MiddleRight - 0 + C Transparent ButtonHighlight - 100, 267 - MCLabel749 + 56, 207 + MCLabel734 11, 12 + + 79, 48 + Line2 + 1, 271 + @@ -1135,1590 +1135,1591 @@ 611, 334 - + Red DarkGray - + GHSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 147 - MCLabel578 + 546, 297 + MCLabel859 11, 12 - + Red DarkGray - + GHTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 117 - MCLabel579 + 491, 297 + MCLabel860 11, 12 - + Red DarkGray - + GHStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 87 - MCLabel580 + 433, 297 + MCLabel861 11, 12 - + Red DarkGray - + GHTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 147 - MCLabel581 + 378, 297 + MCLabel862 11, 12 - + Red DarkGray - + GHStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 117 - MCLabel582 + 320, 297 + MCLabel863 11, 12 - + Red DarkGray - + GHStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 87 - MCLabel583 + 264, 297 + MCLabel864 11, 12 - + Red DarkGray - + GHBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 297 - MCLabel584 + 209, 297 + MCLabel865 11, 12 - + Red DarkGray - + GHStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 267 - MCLabel585 + 154, 297 + MCLabel866 11, 12 - + Red DarkGray - + GHMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 237 - MCLabel586 + 103, 297 + MCLabel867 11, 12 - + Red DarkGray - + GGSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 207 - MCLabel587 + 546, 267 + MCLabel868 11, 12 - + Red DarkGray - + GGTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 177 - MCLabel588 + 491, 267 + MCLabel869 11, 12 - + Red DarkGray - + GGStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 297 - MCLabel589 + 433, 267 + MCLabel870 11, 12 - + Red DarkGray - + GGTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 267 - MCLabel590 + 378, 267 + MCLabel871 11, 12 - + Red DarkGray - + GGStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 237 - MCLabel591 + 320, 267 + MCLabel872 11, 12 - + Red DarkGray - + GGStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 207 - MCLabel592 + 264, 267 + MCLabel873 11, 12 - + Red DarkGray - + GGBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 177 - MCLabel593 + 209, 267 + MCLabel874 11, 12 - + Red DarkGray - + GGStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 147 - MCLabel594 + 154, 267 + MCLabel875 11, 12 - + Red DarkGray - + GGMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 117 - MCLabel595 + 103, 267 + MCLabel876 11, 12 - + Red DarkGray - + GFSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 87 - MCLabel596 + 546, 237 + MCLabel877 11, 12 - + Red DarkGray - + GFTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 147 - MCLabel597 + 491, 237 + MCLabel878 11, 12 - + Red DarkGray - + GFStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 117 - MCLabel598 + 433, 237 + MCLabel879 11, 12 - + Red DarkGray - + GFTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 87 - MCLabel599 + 378, 237 + MCLabel880 11, 12 - + Red DarkGray - + GFStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 147 - MCLabel600 + 320, 237 + MCLabel881 11, 12 - + Red DarkGray - + GFStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 147 - MCLabel601 + 264, 237 + MCLabel882 11, 12 - + Red DarkGray - + GFBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 117 - MCLabel602 + 209, 237 + MCLabel883 11, 12 - + Red DarkGray - + GFStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 117 - MCLabel603 + 154, 237 + MCLabel884 11, 12 - + Red DarkGray - + GFMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 87 - MCLabel604 + 103, 237 + MCLabel885 11, 12 - + Red DarkGray - + GESpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 87 - MCLabel605 + 546, 207 + MCLabel886 11, 12 - + Red DarkGray - + GETemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 147 - MCLabel606 + 491, 207 + MCLabel887 11, 12 - + Red DarkGray - + GEStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 117 - MCLabel607 + 433, 207 + MCLabel888 11, 12 - + Red DarkGray - + GETotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 87 - MCLabel608 + 378, 207 + MCLabel889 11, 12 - + Red DarkGray - + GEStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 147 - MCLabel609 + 320, 207 + MCLabel890 11, 12 - + Red DarkGray - + GEStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 147 - MCLabel610 + 264, 207 + MCLabel891 11, 12 - + Red DarkGray - + GEBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 117 - MCLabel611 + 209, 207 + MCLabel892 11, 12 - + Red DarkGray - + GEStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 117 - MCLabel612 + 154, 207 + MCLabel893 11, 12 - + Red DarkGray - + GEMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 87 - MCLabel613 + 103, 207 + MCLabel894 11, 12 - + Red DarkGray - + GDSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 87 - MCLabel614 + 546, 177 + MCLabel895 11, 12 - + Red DarkGray - + GDTemperature False - None + InitData True True MiddleRight - 参数名称 + 0 Transparent ButtonHighlight - 20, 55 - MCLabel615 - 53, 12 + 491, 177 + MCLabel896 + 11, 12 - + Red DarkGray - + GDStepTime False - None + InitData True True MiddleRight - 状态 + 0 Transparent ButtonHighlight - 151, 55 - MCLabel616 - 29, 12 + 433, 177 + MCLabel897 + 11, 12 - + Red DarkGray - + GDTotalTime False - None + InitData True True MiddleRight - 当前模式 + 0 Transparent ButtonHighlight - 93, 55 - MCLabel617 - 53, 12 + 378, 177 + MCLabel898 + 11, 12 - + Red DarkGray - + GDStepCode False - None + InitData True True - H + MiddleRight + 0 Transparent ButtonHighlight - 56, 297 - MCLabel618 + 320, 177 + MCLabel899 11, 12 - + Red DarkGray - + GDStep False - None + InitData True True - G + MiddleRight + 0 Transparent ButtonHighlight - 56, 267 - MCLabel619 + 264, 177 + MCLabel900 11, 12 - + Red DarkGray - + GDBatch False - None + InitData True True - E + MiddleRight + 0 Transparent ButtonHighlight - 56, 207 - MCLabel620 + 209, 177 + MCLabel901 11, 12 - + Red DarkGray - + GDStatus False - None + InitData True True - F + MiddleRight + 0 Transparent ButtonHighlight - 56, 237 - MCLabel621 + 154, 177 + MCLabel902 11, 12 - + Red DarkGray - + GDMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 297 - MCLabel622 + 103, 177 + MCLabel903 11, 12 - + Red DarkGray - + GCSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 267 - MCLabel623 + 546, 147 + MCLabel904 11, 12 - + Red DarkGray - + GCTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 237 - MCLabel624 + 491, 147 + MCLabel905 11, 12 - + Red DarkGray - + GCStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 207 - MCLabel625 + 433, 147 + MCLabel906 11, 12 - + Red DarkGray - + GCTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 177 - MCLabel626 + 378, 147 + MCLabel907 11, 12 - + Red DarkGray - + GCStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 297 - MCLabel627 + 320, 147 + MCLabel908 11, 12 - + Red DarkGray - + GCStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 267 - MCLabel628 + 264, 147 + MCLabel909 11, 12 - + Red DarkGray - + GCBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 237 - MCLabel629 + 209, 147 + MCLabel910 11, 12 - + Red DarkGray - + GCStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 207 - MCLabel630 + 154, 147 + MCLabel911 11, 12 - + Red DarkGray - + GCMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 177 - MCLabel631 + 103, 147 + MCLabel912 11, 12 - + Red DarkGray - + GBSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 297 - MCLabel632 + 546, 117 + MCLabel913 11, 12 - + Red DarkGray - + GBTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 297 - MCLabel633 + 491, 117 + MCLabel914 11, 12 - + Red DarkGray - + GBStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 267 - MCLabel634 + 433, 117 + MCLabel915 11, 12 - + Red DarkGray - + GBTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 267 - MCLabel635 + 378, 117 + MCLabel916 11, 12 - + Red DarkGray - + GBStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 237 - MCLabel636 + 320, 117 + MCLabel917 11, 12 - + Red DarkGray - + GBStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 237 - MCLabel637 + 264, 117 + MCLabel918 11, 12 - + Red DarkGray - + GBBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 207 - MCLabel638 + 209, 117 + MCLabel919 11, 12 - + Red DarkGray - + GBStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 207 - MCLabel639 + 154, 117 + MCLabel920 11, 12 - + Red DarkGray - + GBMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 177 - MCLabel640 + 103, 117 + MCLabel921 11, 12 - + Red DarkGray - + GASpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 177 - MCLabel641 + 546, 87 + MCLabel922 11, 12 - + Red DarkGray - + GATemperature False - None + InitData True True - D + MiddleRight + 0 Transparent ButtonHighlight - 56, 177 - MCLabel642 + 491, 87 + MCLabel923 11, 12 - + Red DarkGray - + GAStepTime False - None + InitData True True - C + MiddleRight + 0 Transparent ButtonHighlight - 56, 147 - MCLabel643 + 433, 87 + MCLabel924 11, 12 - + Red DarkGray - + GATotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 297 - MCLabel644 + 378, 87 + MCLabel925 11, 12 - + Red DarkGray - + GAStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 267 - MCLabel645 + 320, 87 + MCLabel926 11, 12 - + Red DarkGray - + GAStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 237 - MCLabel646 + 264, 87 + MCLabel927 11, 12 - + Red DarkGray - + GABatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 207 - MCLabel647 + 209, 87 + MCLabel928 11, 12 - + Red DarkGray - + GAStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 177 - MCLabel648 + 154, 87 + MCLabel929 11, 12 - - 79, 48 - Line4 - 1, 273 - - + Red DarkGray - + GAMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 297 - MCLabel649 + 103, 87 + MCLabel930 11, 12 - + Red @@ -2733,14 +2734,14 @@ True True MiddleRight - 0 + 参数名称 Transparent ButtonHighlight - 100, 297 - MCLabel650 - 11, 12 + 20, 55 + MCLabel615 + 53, 12 - + Red @@ -2755,14 +2756,14 @@ True True MiddleRight - 0 + 状态 Transparent ButtonHighlight - 151, 267 - MCLabel651 - 11, 12 + 151, 55 + MCLabel616 + 29, 12 - + Red @@ -2777,14 +2778,14 @@ True True MiddleRight - 0 + 当前模式 Transparent ButtonHighlight - 100, 267 - MCLabel652 - 11, 12 + 93, 55 + MCLabel617 + 53, 12 - + Red @@ -2798,15 +2799,14 @@ None True True - MiddleRight - 0 + H Transparent ButtonHighlight - 151, 237 - MCLabel653 + 56, 297 + MCLabel618 11, 12 - + Red @@ -2820,15 +2820,14 @@ None True True - MiddleRight - 0 + G Transparent ButtonHighlight - 100, 237 - MCLabel654 + 56, 267 + MCLabel619 11, 12 - + Red @@ -2842,15 +2841,14 @@ None True True - MiddleRight - 0 + E Transparent ButtonHighlight - 151, 207 - MCLabel655 + 56, 207 + MCLabel620 11, 12 - + Red @@ -2864,15 +2862,14 @@ None True True - MiddleRight - 0 + F Transparent ButtonHighlight - 100, 207 - MCLabel656 + 56, 237 + MCLabel621 11, 12 - + Red @@ -2886,15 +2883,14 @@ None True True - MiddleRight - 0 + D Transparent ButtonHighlight - 151, 177 - MCLabel657 + 56, 177 + MCLabel642 11, 12 - + Red @@ -2908,14 +2904,18 @@ None True True - MiddleRight - 0 + C Transparent ButtonHighlight - 100, 177 - MCLabel658 + 56, 147 + MCLabel643 11, 12 + + 79, 48 + Line4 + 1, 273 + @@ -3144,1612 +3144,1591 @@ 611, 334 - - - - Red - DarkGray - - - False - - - - None - True - True - MiddleRight - 0 - Transparent - ButtonHighlight - 543, 147 - MCLabel358 - 11, 12 - - + Red DarkGray - + WHSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 117 - MCLabel359 + 543, 297 + MCLabel823 11, 12 - + Red DarkGray - + WHTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 87 - MCLabel360 + 488, 297 + MCLabel824 11, 12 - + Red DarkGray - + WHStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 147 - MCLabel361 + 430, 297 + MCLabel825 11, 12 - + Red DarkGray - + WHTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 117 - MCLabel362 + 375, 297 + MCLabel826 11, 12 - + Red DarkGray - + WHStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 87 - MCLabel363 + 317, 297 + MCLabel827 11, 12 - + Red DarkGray - + WHStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 297 - MCLabel366 + 261, 297 + MCLabel828 11, 12 - + Red DarkGray - + WHBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 267 - MCLabel367 + 206, 297 + MCLabel829 11, 12 - + Red DarkGray - + WHStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 237 - MCLabel368 + 151, 297 + MCLabel830 11, 12 - + Red DarkGray - + WHMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 207 - MCLabel369 + 100, 297 + MCLabel831 11, 12 - + Red DarkGray - + WGSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 543, 177 - MCLabel370 + 543, 267 + MCLabel832 11, 12 - + Red DarkGray - + WGTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 297 - MCLabel373 + 488, 267 + MCLabel833 11, 12 - + Red DarkGray - + WGStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 267 - MCLabel374 + 430, 267 + MCLabel834 11, 12 - + Red DarkGray - + WGTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 237 - MCLabel375 + 375, 267 + MCLabel835 11, 12 - + Red DarkGray - + WGStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 207 - MCLabel376 + 317, 267 + MCLabel836 11, 12 - + Red DarkGray - + WGStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 488, 177 - MCLabel377 + 261, 267 + MCLabel837 11, 12 - + Red DarkGray - + WGBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 147 - MCLabel234 + 206, 267 + MCLabel838 11, 12 - + Red DarkGray - + WGStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 117 - MCLabel235 + 151, 267 + MCLabel839 11, 12 - + Red DarkGray - + WGMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 87 - MCLabel236 + 100, 267 + MCLabel840 11, 12 - + Red DarkGray - + WFSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 147 - MCLabel237 + 543, 237 + MCLabel841 11, 12 - + Red DarkGray - + WFTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 117 - MCLabel238 + 488, 237 + MCLabel842 11, 12 - + Red DarkGray - + WFStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 87 - MCLabel239 + 430, 237 + MCLabel843 11, 12 - + Red DarkGray - + WFTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 147 - MCLabel240 + 375, 237 + MCLabel844 11, 12 - + Red DarkGray - + WFStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 147 - MCLabel241 + 317, 237 + MCLabel845 11, 12 - + Red DarkGray - + WFStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 117 - MCLabel242 + 261, 237 + MCLabel846 11, 12 - + Red DarkGray - + WFBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 117 - MCLabel243 + 206, 237 + MCLabel847 11, 12 - + Red DarkGray - + WFStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 87 - MCLabel244 + 151, 237 + MCLabel848 11, 12 - + Red DarkGray - + WFMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 87 - MCLabel245 + 100, 237 + MCLabel849 11, 12 - + Red DarkGray - + WESpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 147 - MCLabel246 + 543, 207 + MCLabel850 11, 12 - + Red DarkGray - + WETemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 117 - MCLabel247 + 488, 207 + MCLabel851 11, 12 - + Red DarkGray - + WEStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 87 - MCLabel248 + 430, 207 + MCLabel852 11, 12 - + Red DarkGray - + WETotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 147 - MCLabel252 + 375, 207 + MCLabel853 11, 12 - + Red DarkGray - + WEStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 147 - MCLabel253 + 317, 207 + MCLabel854 11, 12 - + Red DarkGray - + WEStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 117 - MCLabel254 + 261, 207 + MCLabel855 11, 12 - + Red DarkGray - + WEBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 117 - MCLabel255 + 206, 207 + MCLabel856 11, 12 - + Red DarkGray - + WEStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 87 - MCLabel256 + 151, 207 + MCLabel857 11, 12 - + Red DarkGray - + WEMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 87 - MCLabel257 + 100, 207 + MCLabel858 11, 12 - + Red DarkGray - + WDSpeed False - None + InitData True True MiddleRight - 参数名称 + 0 Transparent ButtonHighlight - 20, 55 - MCLabel233 - 53, 12 + 543, 177 + MCLabel787 + 11, 12 - + Red DarkGray - + WDTemperature False - None + InitData True True MiddleRight - 状态 + 0 Transparent ButtonHighlight - 151, 55 - MCLabel231 - 29, 12 + 488, 177 + MCLabel788 + 11, 12 - + Red DarkGray - + WDStepTime False - None + InitData True True MiddleRight - 当前模式 + 0 Transparent ButtonHighlight - 93, 55 - MCLabel232 - 53, 12 + 430, 177 + MCLabel789 + 11, 12 - + Red DarkGray - + WDTotalTime False - None + InitData True True - H + MiddleRight + 0 Transparent ButtonHighlight - 56, 297 - MCLabel158 + 375, 177 + MCLabel790 11, 12 - + Red DarkGray - + WDStepCode False - None + InitData True True - G + MiddleRight + 0 Transparent ButtonHighlight - 56, 267 - MCLabel159 + 317, 177 + MCLabel791 11, 12 - + Red DarkGray - + WDStep False - None + InitData True True - E + MiddleRight + 0 Transparent ButtonHighlight - 56, 207 - MCLabel160 + 261, 177 + MCLabel792 11, 12 - + Red DarkGray - + WDBatch False - None + InitData True True - F + MiddleRight + 0 Transparent ButtonHighlight - 56, 237 - MCLabel161 + 206, 177 + MCLabel793 11, 12 - + Red DarkGray - + WDStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 297 - MCLabel164 + 151, 177 + MCLabel794 11, 12 - + Red DarkGray - + WDMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 267 - MCLabel165 + 100, 177 + MCLabel795 11, 12 - + Red DarkGray - + WCSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 237 - MCLabel166 + 543, 147 + MCLabel796 11, 12 - + Red DarkGray - + WCTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 207 - MCLabel167 + 488, 147 + MCLabel797 11, 12 - + Red DarkGray - + WCStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 430, 177 - MCLabel168 + 430, 147 + MCLabel798 11, 12 - + Red DarkGray - + WCTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 297 - MCLabel171 + 375, 147 + MCLabel799 11, 12 - + Red DarkGray - + WCStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 267 - MCLabel172 + 317, 147 + MCLabel800 11, 12 - + Red DarkGray - + WCStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 237 - MCLabel173 + 261, 147 + MCLabel801 11, 12 - + Red DarkGray - + WCBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 207 - MCLabel174 + 206, 147 + MCLabel802 11, 12 - + Red DarkGray - + WCStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 375, 177 - MCLabel175 + 151, 147 + MCLabel803 11, 12 - + Red DarkGray - + WCMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 297 - MCLabel180 + 100, 147 + MCLabel804 11, 12 - + Red DarkGray - + WBSpeed False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 297 - MCLabel181 + 543, 117 + MCLabel805 11, 12 - + Red DarkGray - + WBTemperature False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 267 - MCLabel182 + 488, 117 + MCLabel806 11, 12 - + Red DarkGray - + WBStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 267 - MCLabel183 + 430, 117 + MCLabel807 11, 12 - + Red DarkGray - + WBTotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 237 - MCLabel184 + 375, 117 + MCLabel808 11, 12 - + Red DarkGray - + WBStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 237 - MCLabel185 + 317, 117 + MCLabel809 11, 12 - + Red DarkGray - + WBStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 207 - MCLabel186 + 261, 117 + MCLabel810 11, 12 - + Red DarkGray - + WBBatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 207 - MCLabel187 + 206, 117 + MCLabel811 11, 12 - + Red DarkGray - + WBStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 317, 177 - MCLabel188 + 151, 117 + MCLabel812 11, 12 - + Red DarkGray - + WBMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 261, 177 - MCLabel189 + 100, 117 + MCLabel813 11, 12 - + Red DarkGray - + WASpeed False - None + InitData True True - D + MiddleRight + 0 Transparent ButtonHighlight - 56, 177 - MCLabel190 + 543, 87 + MCLabel814 11, 12 - + Red DarkGray - + WATemperature False - None + InitData True True - C + MiddleRight + 0 Transparent ButtonHighlight - 56, 147 - MCLabel191 + 488, 87 + MCLabel815 11, 12 - + Red DarkGray - + WAStepTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 297 - MCLabel194 + 430, 87 + MCLabel816 11, 12 - + Red DarkGray - + WATotalTime False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 267 - MCLabel195 + 375, 87 + MCLabel817 11, 12 - + Red DarkGray - + WAStepCode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 237 - MCLabel196 + 317, 87 + MCLabel818 11, 12 - + Red DarkGray - + WAStep False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 207 - MCLabel197 + 261, 87 + MCLabel819 11, 12 - + Red DarkGray - + WABatch False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 206, 177 - MCLabel198 + 206, 87 + MCLabel820 11, 12 - - 79, 48 - Line5 - 1, 273 - - + Red DarkGray - + WAStatus False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 151, 297 - MCLabel210 + 151, 87 + MCLabel821 11, 12 - + Red DarkGray - + WAMode False - None + InitData True True MiddleRight 0 Transparent ButtonHighlight - 100, 297 - MCLabel211 + 100, 87 + MCLabel822 11, 12 - + Red @@ -4764,14 +4743,14 @@ True True MiddleRight - 0 + 状态 Transparent ButtonHighlight - 151, 267 - MCLabel212 - 11, 12 + 151, 55 + MCLabel231 + 29, 12 - + Red @@ -4786,14 +4765,14 @@ True True MiddleRight - 0 + 当前模式 Transparent ButtonHighlight - 100, 267 - MCLabel213 - 11, 12 + 93, 55 + MCLabel232 + 53, 12 - + Red @@ -4807,15 +4786,14 @@ None True True - MiddleRight - 0 + H Transparent ButtonHighlight - 151, 237 - MCLabel214 + 56, 297 + MCLabel158 11, 12 - + Red @@ -4829,15 +4807,14 @@ None True True - MiddleRight - 0 + G Transparent ButtonHighlight - 100, 237 - MCLabel215 + 56, 267 + MCLabel159 11, 12 - + Red @@ -4851,15 +4828,14 @@ None True True - MiddleRight - 0 + E Transparent ButtonHighlight - 151, 207 - MCLabel216 + 56, 207 + MCLabel160 11, 12 - + Red @@ -4873,15 +4849,14 @@ None True True - MiddleRight - 0 + F Transparent ButtonHighlight - 100, 207 - MCLabel217 + 56, 237 + MCLabel161 11, 12 - + Red @@ -4895,15 +4870,14 @@ None True True - MiddleRight - 0 + D Transparent ButtonHighlight - 151, 177 - MCLabel218 + 56, 177 + MCLabel190 11, 12 - + Red @@ -4917,14 +4891,18 @@ None True True - MiddleRight - 0 + C Transparent ButtonHighlight - 100, 177 - MCLabel219 + 56, 147 + MCLabel191 11, 12 + + 79, 48 + Line5 + 1, 273 + @@ -6814,7 +6792,7 @@ - ParametersWithPc.B1.topPressure_V5_ActualValue + ParametersWithPc.B1.Dryer1_mode Red DarkGray @@ -11517,7 +11495,7 @@ 1924, 1037 - AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAAAAAAAAAAABwMAAAAAAQAAAAAAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAL + AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAEAAAAMAAAABwMAAAAAAQAAAAQAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAJBAAAAA0DBQQAAAAhTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uAwAAABU8R1VJRD5rX19CYWNraW5nRmllbGQVPE5hbWU+a19fQmFja2luZ0ZpZWxkFzxSZW1hcms+a19fQmFja2luZ0ZpZWxkAQEBAgAAAAYFAAAAIDhjZGQyYmNhYjgyYjRmODFhYjgyZmZiNWU1MTJmOTBmBgYAAAAP56qX5L2T5Yid5aeL5YyWBgcAAAAP56qX5L2T5Yid5aeL5YyWCw== AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAAAAAAAAAAABwMAAAAAAQAAAAAAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAL diff --git a/Main/MCEdit/MCEdit.csproj b/Main/MCEdit/MCEdit.csproj index e1830d3..7ad3b54 100644 --- a/Main/MCEdit/MCEdit.csproj +++ b/Main/MCEdit/MCEdit.csproj @@ -190,6 +190,9 @@ PreserveNewest + + Always + Designer PreserveNewest