diff --git a/DH.Commons/Base/PLCBase.cs b/DH.Commons/Base/PLCBase.cs index f23192e..621f876 100644 --- a/DH.Commons/Base/PLCBase.cs +++ b/DH.Commons/Base/PLCBase.cs @@ -20,7 +20,11 @@ namespace DH.Commons.Base private Parity _parity = Parity.None; private string _ip = "192.168.6.61"; private int _port = 502; - private AntList _PLCItemList = new AntList(); + private BindingList _PLCItemList = new BindingList(); + private BindingList _PLCStartProcessList = new BindingList(); + private BindingList _PLCStopProcessList = new BindingList(); + private BindingList _PLCStartResetList = new BindingList(); + private BindingList _PLCStopResetList = new BindingList(); [Category("设备配置")] [DisplayName("是否启用")] [Description("是否启用")] @@ -179,7 +183,7 @@ namespace DH.Commons.Base [Category("点位配置")] [DisplayName("点位配置")] [Description("点位配置")] - public AntList PLCItemList + public BindingList PLCItemList { get => _PLCItemList; set @@ -189,6 +193,47 @@ namespace DH.Commons.Base OnPropertyChanged(nameof(PLCItemList)); } } + + public BindingList PLCStartProcessList + { + get => _PLCStartProcessList; + set + { + if (_PLCStartProcessList == value) return; + _PLCStartProcessList = value; + OnPropertyChanged(nameof(PLCStartProcessList)); + } + } + public BindingList PLCStopProcessList + { + get => _PLCStopProcessList; + set + { + if (_PLCStopProcessList == value) return; + _PLCStopProcessList = value; + OnPropertyChanged(nameof(PLCStopProcessList)); + } + } + public BindingList PLCStartResetList + { + get => _PLCStartResetList; + set + { + if (_PLCStartResetList == value) return; + _PLCStartResetList = value; + OnPropertyChanged(nameof(PLCStartResetList)); + } + } + public BindingList PLCStopResetList + { + get => _PLCStopResetList; + set + { + if (_PLCStopResetList == value) return; + _PLCStopResetList = value; + OnPropertyChanged(nameof(PLCStopResetList)); + } + } public virtual bool PLCConnect() { Connected = true; @@ -209,6 +254,8 @@ namespace DH.Commons.Base public virtual bool WriteShort(string address, short value, bool waitForReply = true) { return false; } public virtual bool WriteInt(string address, int value, bool waitForReply = true) { return false; } public virtual bool WriteDInt(string address, int value, bool waitForReply = true) { return false; } + + public virtual bool WriteDInt1(string address, int value, bool waitForReply = true) { return false; } public virtual bool WriteFloat(string address, float value, bool waitForReply = true) { return false; } public virtual bool WriteBool(string address, bool value, bool waitForReply = true) { return false; } } @@ -218,13 +265,10 @@ namespace DH.Commons.Base { private bool _selected; private string _name = string.Empty; - private string _type = string.Empty; + private EnumPLCDataType _type; private string _value = string.Empty; private bool _startexecute; - private bool _endexecute; private int _startindex; - private int _endindex; - private string _numtype; private string _address; /// /// 是否选中 @@ -257,7 +301,7 @@ namespace DH.Commons.Base } } } - public string Type + public EnumPLCDataType Type { get => _type; set @@ -284,18 +328,7 @@ namespace DH.Commons.Base } } } - public string NumTpye - { - get => _numtype; - set - { - if (_numtype != value) - { - _numtype = value; - OnPropertyChanged(nameof(NumTpye)); - } - } - } + /// /// 参数值 /// @@ -313,7 +346,7 @@ namespace DH.Commons.Base } /// - /// 流程开启执行状态 + /// 启用状态 /// public bool StartExecute { @@ -327,27 +360,13 @@ namespace DH.Commons.Base } } } - /// - /// 流程结束执行状态 - /// - public bool EndExecute - { - get => _endexecute; - set - { - if (_endexecute != value) - { - _endexecute = value; - OnPropertyChanged(nameof(EndExecute)); - } - } - } + /// - /// 流程开启顺序 + /// 顺序 /// public int StartIndex { @@ -361,22 +380,7 @@ namespace DH.Commons.Base } } } - /// - /// 流程结束顺序 - /// - public int EndIndex - { - get => _endindex; - set - { - if (_endindex != value) - { - _endindex = value; - OnPropertyChanged(nameof(EndIndex)); - } - } - } - + private CellLink[] cellLinks; [JsonIgnore] public CellLink[] CellLinks @@ -390,18 +394,18 @@ namespace DH.Commons.Base } } - private CellTag[] cellTags; - [JsonIgnore] - public CellTag[] CellTags - { - get { return cellTags; } - set - { - if (cellTags == value) return; - cellTags = value; - OnPropertyChanged(nameof(CellTags)); - } - } + //private CellTag[] cellTags; + //[JsonIgnore] + //public CellTag[] CellTags + //{ + // get { return cellTags; } + // set + // { + // if (cellTags == value) return; + // cellTags = value; + // OnPropertyChanged(nameof(CellTags)); + // } + //} } diff --git a/DH.Commons/Enums/Enum.cs b/DH.Commons/Enums/Enum.cs index 8c17014..b66f989 100644 --- a/DH.Commons/Enums/Enum.cs +++ b/DH.Commons/Enums/Enum.cs @@ -111,16 +111,16 @@ namespace DH.Commons.Enums public enum EnumPLCDataType { - HD, - D, - M + 单字整型, + 双字整型, + 浮点型, + 布尔型 } - public enum EnumPLCINTType + + public enum EnumBool { - 单字16位, - 单字32位, - 双字16位, - 双字32位 + 关闭, + 启用 } public enum StreamFormat diff --git a/DH.Devices.PLC/XinJEPLCTcpNet.cs b/DH.Devices.PLC/XinJEPLCTcpNet.cs index 6a38193..c84d70d 100644 --- a/DH.Devices.PLC/XinJEPLCTcpNet.cs +++ b/DH.Devices.PLC/XinJEPLCTcpNet.cs @@ -304,7 +304,52 @@ namespace DH.Devices.PLC return false; } + /// + /// 写单独地址 Dint 值- 待测试 + /// + /// + /// + /// + /// + public override bool WriteDInt1(string address, int writeValue, bool waitForReply = true) + { + // 1. 地址格式解析 + var match = Regex.Match(address, @"^([A-Za-z]+)(\d+)$"); + if (!match.Success) + { + Console.WriteLine($"地址格式错误: {address}"); + return false; + } + string prefix = match.Groups[1].Value; // 提取字母部分(如"D"或"HD") + int baseAddr = int.Parse(match.Groups[2].Value); // 提取数字部分(如100) + + // 2. 数值拆分为两个16位值(大端序) + byte[] bytes = BitConverter.GetBytes(writeValue); + short high = BitConverter.ToInt16(bytes, 2); // 高16位 + short low = BitConverter.ToInt16(bytes, 0); // 低16位 + + // 3. 构造高低位地址 + string highAddress = $"{prefix}{baseAddr + 1}"; // 如"D101"或"HD101" + string lowAddress = $"{prefix}{baseAddr}"; // 如"D100"或"HD100" + + // 4. 写入操作(带重试) + for (int i = 0; i < 3; i++) + { + try + { + if (!TcpNet.Write(highAddress, high).IsSuccess) continue; + Thread.Sleep(10); + return TcpNet.Write(lowAddress, low).IsSuccess; + } + catch (Exception ex) + { + Console.WriteLine($"写入失败: {ex.Message}"); + Thread.Sleep(50 * (i + 1)); + } + } + return false; + } /// /// 写单独地址 float 值 /// diff --git a/DHSoftware/DHSoftware.csproj b/DHSoftware/DHSoftware.csproj index 8afdfd0..a1bfdf8 100644 --- a/DHSoftware/DHSoftware.csproj +++ b/DHSoftware/DHSoftware.csproj @@ -14,6 +14,7 @@ + diff --git a/DHSoftware/MainWindow.cs b/DHSoftware/MainWindow.cs index 35d54a4..90ab720 100644 --- a/DHSoftware/MainWindow.cs +++ b/DHSoftware/MainWindow.cs @@ -684,6 +684,11 @@ namespace DHSoftware _productLists.Add(products); } + //流程执行时PLC + StartPLCAction(); + + + // 转盘操作 // if (_PLC?.IIConfig?.IsEnabled == true) @@ -708,6 +713,21 @@ namespace DHSoftware // MachineState = MachineState.Running; } + /// + /// 流程开始执行PLC + /// + private void StartPLCAction() + { + if (PLC.PLCItemList?.Count > 0) + { + List startPLCList= PLC.PLCItemList.Where(it=>it.StartExecute).ToList(); + if (startPLCList?.Count > 0) + { + + } + } + } + private void PrepareMLEngine() { //if (_visionEngine == null) diff --git a/DHSoftware/Views/MotionControl.Designer.cs b/DHSoftware/Views/MotionControl.Designer.cs index ad7fd5f..e0285f0 100644 --- a/DHSoftware/Views/MotionControl.Designer.cs +++ b/DHSoftware/Views/MotionControl.Designer.cs @@ -28,6 +28,7 @@ /// private void InitializeComponent() { + AntdUI.Tabs.StyleLine styleLine1 = new AntdUI.Tabs.StyleLine(); stackPanel2 = new AntdUI.StackPanel(); swhEnable = new AntdUI.Switch(); label4 = new AntdUI.Label(); @@ -56,9 +57,32 @@ stpBaud = new AntdUI.StackPanel(); cmbBaudRate = new AntdUI.Select(); label3 = new AntdUI.Label(); + tabs1 = new AntdUI.Tabs(); + tabPage1 = new AntdUI.TabPage(); PLCItemsTable = new AntdUI.Table(); + panel1 = new AntdUI.Panel(); btnDelete = new AntdUI.Button(); btnAdd = new AntdUI.Button(); + tabPage2 = new AntdUI.TabPage(); + TableSartProcess = new AntdUI.Table(); + panel2 = new AntdUI.Panel(); + btnSartProcessDelete = new AntdUI.Button(); + btnSartProcessAdd = new AntdUI.Button(); + tabPage3 = new AntdUI.TabPage(); + TableStopProcess = new AntdUI.Table(); + panel3 = new AntdUI.Panel(); + btnStopProcessDelete = new AntdUI.Button(); + btnStopProcessAdd = new AntdUI.Button(); + tabPage4 = new AntdUI.TabPage(); + TableStartReset = new AntdUI.Table(); + panel4 = new AntdUI.Panel(); + btnStartResetDelete = new AntdUI.Button(); + btnStartResetAdd = new AntdUI.Button(); + tabPage5 = new AntdUI.TabPage(); + TableStopReset = new AntdUI.Table(); + panel5 = new AntdUI.Panel(); + btnStopResetDelete = new AntdUI.Button(); + btnStopResetAdd = new AntdUI.Button(); stackPanel2.SuspendLayout(); stackPanel3.SuspendLayout(); stpCom.SuspendLayout(); @@ -69,6 +93,17 @@ stpStop.SuspendLayout(); stpData.SuspendLayout(); stpBaud.SuspendLayout(); + tabs1.SuspendLayout(); + tabPage1.SuspendLayout(); + panel1.SuspendLayout(); + tabPage2.SuspendLayout(); + panel2.SuspendLayout(); + tabPage3.SuspendLayout(); + panel3.SuspendLayout(); + tabPage4.SuspendLayout(); + panel4.SuspendLayout(); + tabPage5.SuspendLayout(); + panel5.SuspendLayout(); SuspendLayout(); // // stackPanel2 @@ -164,9 +199,10 @@ stackPanel1.Controls.Add(stpCom); stackPanel1.Controls.Add(stackPanel3); stackPanel1.Controls.Add(stackPanel2); - stackPanel1.Location = new Point(19, 16); + stackPanel1.Dock = DockStyle.Left; + stackPanel1.Location = new Point(0, 0); stackPanel1.Name = "stackPanel1"; - stackPanel1.Size = new Size(223, 478); + stackPanel1.Size = new Size(223, 530); stackPanel1.TabIndex = 25; stackPanel1.Text = "stackPanel1"; stackPanel1.Vertical = true; @@ -331,22 +367,63 @@ label3.TabIndex = 24; label3.Text = "波 特 率"; // + // tabs1 + // + tabs1.Dock = DockStyle.Fill; + tabs1.Location = new Point(223, 0); + tabs1.Name = "tabs1"; + tabs1.Pages.Add(tabPage1); + tabs1.Pages.Add(tabPage2); + tabs1.Pages.Add(tabPage3); + tabs1.Pages.Add(tabPage4); + tabs1.Pages.Add(tabPage5); + tabs1.Size = new Size(675, 530); + tabs1.Style = styleLine1; + tabs1.TabIndex = 26; + tabs1.Text = "tabs1"; + tabs1.SelectedIndex = 0; + // + // tabPage1 + // + tabPage1.Controls.Add(PLCItemsTable); + tabPage1.Controls.Add(panel1); + tabPage1.Location = new Point(3, 28); + tabPage1.Name = "tabPage1"; + tabPage1.Size = new Size(669, 499); + tabPage1.TabIndex = 0; + tabPage1.Text = "点位表"; + // // PLCItemsTable // + PLCItemsTable.Dock = DockStyle.Fill; PLCItemsTable.EmptyHeader = true; - PLCItemsTable.Location = new Point(238, 71); + PLCItemsTable.Location = new Point(0, 45); PLCItemsTable.Name = "PLCItemsTable"; - PLCItemsTable.Size = new Size(634, 392); - PLCItemsTable.TabIndex = 26; + PLCItemsTable.Padding = new Padding(5); + PLCItemsTable.Size = new Size(669, 454); + PLCItemsTable.TabIndex = 36; PLCItemsTable.Text = "table1"; // + // panel1 + // + panel1.Back = Color.Transparent; + panel1.BackColor = SystemColors.Window; + panel1.Controls.Add(btnDelete); + panel1.Controls.Add(btnAdd); + panel1.Dock = DockStyle.Top; + panel1.Location = new Point(0, 0); + panel1.Name = "panel1"; + panel1.Size = new Size(669, 45); + panel1.TabIndex = 35; + panel1.Text = "panel1"; + // // btnDelete // btnDelete.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - btnDelete.Location = new Point(331, 27); + btnDelete.Location = new Point(110, 10); btnDelete.Name = "btnDelete"; - btnDelete.Size = new Size(80, 32); - btnDelete.TabIndex = 28; + btnDelete.Size = new Size(74, 32); + btnDelete.TabIndex = 36; btnDelete.Text = "删除"; btnDelete.Type = AntdUI.TTypeMini.Error; btnDelete.WaveSize = 0; @@ -354,21 +431,243 @@ // btnAdd // btnAdd.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - btnAdd.Location = new Point(245, 27); + btnAdd.Location = new Point(13, 10); btnAdd.Name = "btnAdd"; - btnAdd.Size = new Size(80, 32); - btnAdd.TabIndex = 27; + btnAdd.Size = new Size(82, 32); + btnAdd.TabIndex = 35; btnAdd.Text = "新增"; btnAdd.Type = AntdUI.TTypeMini.Primary; btnAdd.WaveSize = 0; // + // tabPage2 + // + tabPage2.Controls.Add(TableSartProcess); + tabPage2.Controls.Add(panel2); + tabPage2.Location = new Point(-669, -499); + tabPage2.Name = "tabPage2"; + tabPage2.Size = new Size(669, 499); + tabPage2.TabIndex = 1; + tabPage2.Text = "流程启动表"; + // + // TableSartProcess + // + TableSartProcess.Dock = DockStyle.Fill; + TableSartProcess.EmptyHeader = true; + TableSartProcess.Location = new Point(0, 45); + TableSartProcess.Name = "TableSartProcess"; + TableSartProcess.Padding = new Padding(5); + TableSartProcess.Size = new Size(669, 454); + TableSartProcess.TabIndex = 38; + TableSartProcess.Text = "table1"; + // + // panel2 + // + panel2.Back = Color.Transparent; + panel2.BackColor = SystemColors.Window; + panel2.Controls.Add(btnSartProcessDelete); + panel2.Controls.Add(btnSartProcessAdd); + panel2.Dock = DockStyle.Top; + panel2.Location = new Point(0, 0); + panel2.Name = "panel2"; + panel2.Size = new Size(669, 45); + panel2.TabIndex = 37; + panel2.Text = "panel2"; + // + // btnSartProcessDelete + // + btnSartProcessDelete.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnSartProcessDelete.Location = new Point(110, 10); + btnSartProcessDelete.Name = "btnSartProcessDelete"; + btnSartProcessDelete.Size = new Size(74, 32); + btnSartProcessDelete.TabIndex = 36; + btnSartProcessDelete.Text = "删除"; + btnSartProcessDelete.Type = AntdUI.TTypeMini.Error; + btnSartProcessDelete.WaveSize = 0; + // + // btnSartProcessAdd + // + btnSartProcessAdd.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnSartProcessAdd.Location = new Point(13, 10); + btnSartProcessAdd.Name = "btnSartProcessAdd"; + btnSartProcessAdd.Size = new Size(82, 32); + btnSartProcessAdd.TabIndex = 35; + btnSartProcessAdd.Text = "新增"; + btnSartProcessAdd.Type = AntdUI.TTypeMini.Primary; + btnSartProcessAdd.WaveSize = 0; + // + // tabPage3 + // + tabPage3.Controls.Add(TableStopProcess); + tabPage3.Controls.Add(panel3); + tabPage3.Location = new Point(-669, -499); + tabPage3.Name = "tabPage3"; + tabPage3.Size = new Size(669, 499); + tabPage3.TabIndex = 2; + tabPage3.Text = "流程结束表"; + // + // TableStopProcess + // + TableStopProcess.Dock = DockStyle.Fill; + TableStopProcess.EmptyHeader = true; + TableStopProcess.Location = new Point(0, 45); + TableStopProcess.Name = "TableStopProcess"; + TableStopProcess.Padding = new Padding(5); + TableStopProcess.Size = new Size(669, 454); + TableStopProcess.TabIndex = 38; + TableStopProcess.Text = "table1"; + // + // panel3 + // + panel3.Back = Color.Transparent; + panel3.BackColor = SystemColors.Window; + panel3.Controls.Add(btnStopProcessDelete); + panel3.Controls.Add(btnStopProcessAdd); + panel3.Dock = DockStyle.Top; + panel3.Location = new Point(0, 0); + panel3.Name = "panel3"; + panel3.Size = new Size(669, 45); + panel3.TabIndex = 37; + panel3.Text = "panel3"; + // + // btnStopProcessDelete + // + btnStopProcessDelete.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStopProcessDelete.Location = new Point(110, 10); + btnStopProcessDelete.Name = "btnStopProcessDelete"; + btnStopProcessDelete.Size = new Size(74, 32); + btnStopProcessDelete.TabIndex = 36; + btnStopProcessDelete.Text = "删除"; + btnStopProcessDelete.Type = AntdUI.TTypeMini.Error; + btnStopProcessDelete.WaveSize = 0; + // + // btnStopProcessAdd + // + btnStopProcessAdd.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStopProcessAdd.Location = new Point(13, 10); + btnStopProcessAdd.Name = "btnStopProcessAdd"; + btnStopProcessAdd.Size = new Size(82, 32); + btnStopProcessAdd.TabIndex = 35; + btnStopProcessAdd.Text = "新增"; + btnStopProcessAdd.Type = AntdUI.TTypeMini.Primary; + btnStopProcessAdd.WaveSize = 0; + // + // tabPage4 + // + tabPage4.Controls.Add(TableStartReset); + tabPage4.Controls.Add(panel4); + tabPage4.Location = new Point(-669, -499); + tabPage4.Name = "tabPage4"; + tabPage4.Size = new Size(669, 499); + tabPage4.TabIndex = 3; + tabPage4.Text = "复位开始表"; + // + // TableStartReset + // + TableStartReset.Dock = DockStyle.Fill; + TableStartReset.EmptyHeader = true; + TableStartReset.Location = new Point(0, 45); + TableStartReset.Name = "TableStartReset"; + TableStartReset.Padding = new Padding(5); + TableStartReset.Size = new Size(669, 454); + TableStartReset.TabIndex = 38; + TableStartReset.Text = "table1"; + // + // panel4 + // + panel4.Back = Color.Transparent; + panel4.BackColor = SystemColors.Window; + panel4.Controls.Add(btnStartResetDelete); + panel4.Controls.Add(btnStartResetAdd); + panel4.Dock = DockStyle.Top; + panel4.Location = new Point(0, 0); + panel4.Name = "panel4"; + panel4.Size = new Size(669, 45); + panel4.TabIndex = 37; + panel4.Text = "panel4"; + // + // btnStartResetDelete + // + btnStartResetDelete.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStartResetDelete.Location = new Point(110, 10); + btnStartResetDelete.Name = "btnStartResetDelete"; + btnStartResetDelete.Size = new Size(74, 32); + btnStartResetDelete.TabIndex = 36; + btnStartResetDelete.Text = "删除"; + btnStartResetDelete.Type = AntdUI.TTypeMini.Error; + btnStartResetDelete.WaveSize = 0; + // + // btnStartResetAdd + // + btnStartResetAdd.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStartResetAdd.Location = new Point(13, 10); + btnStartResetAdd.Name = "btnStartResetAdd"; + btnStartResetAdd.Size = new Size(82, 32); + btnStartResetAdd.TabIndex = 35; + btnStartResetAdd.Text = "新增"; + btnStartResetAdd.Type = AntdUI.TTypeMini.Primary; + btnStartResetAdd.WaveSize = 0; + // + // tabPage5 + // + tabPage5.Controls.Add(TableStopReset); + tabPage5.Controls.Add(panel5); + tabPage5.Location = new Point(-669, -499); + tabPage5.Name = "tabPage5"; + tabPage5.Size = new Size(669, 499); + tabPage5.TabIndex = 4; + tabPage5.Text = "复位结束表"; + // + // TableStopReset + // + TableStopReset.Dock = DockStyle.Fill; + TableStopReset.EmptyHeader = true; + TableStopReset.Location = new Point(0, 45); + TableStopReset.Name = "TableStopReset"; + TableStopReset.Padding = new Padding(5); + TableStopReset.Size = new Size(669, 454); + TableStopReset.TabIndex = 38; + TableStopReset.Text = "table1"; + // + // panel5 + // + panel5.Back = Color.Transparent; + panel5.BackColor = SystemColors.Window; + panel5.Controls.Add(btnStopResetDelete); + panel5.Controls.Add(btnStopResetAdd); + panel5.Dock = DockStyle.Top; + panel5.Location = new Point(0, 0); + panel5.Name = "panel5"; + panel5.Size = new Size(669, 45); + panel5.TabIndex = 37; + panel5.Text = "panel5"; + // + // btnStopResetDelete + // + btnStopResetDelete.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStopResetDelete.Location = new Point(110, 10); + btnStopResetDelete.Name = "btnStopResetDelete"; + btnStopResetDelete.Size = new Size(74, 32); + btnStopResetDelete.TabIndex = 36; + btnStopResetDelete.Text = "删除"; + btnStopResetDelete.Type = AntdUI.TTypeMini.Error; + btnStopResetDelete.WaveSize = 0; + // + // btnStopResetAdd + // + btnStopResetAdd.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnStopResetAdd.Location = new Point(13, 10); + btnStopResetAdd.Name = "btnStopResetAdd"; + btnStopResetAdd.Size = new Size(82, 32); + btnStopResetAdd.TabIndex = 35; + btnStopResetAdd.Text = "新增"; + btnStopResetAdd.Type = AntdUI.TTypeMini.Primary; + btnStopResetAdd.WaveSize = 0; + // // MotionControl // AutoScaleDimensions = new SizeF(7F, 17F); AutoScaleMode = AutoScaleMode.Font; - Controls.Add(btnDelete); - Controls.Add(btnAdd); - Controls.Add(PLCItemsTable); + Controls.Add(tabs1); Controls.Add(stackPanel1); Name = "MotionControl"; Size = new Size(898, 530); @@ -382,6 +681,17 @@ stpStop.ResumeLayout(false); stpData.ResumeLayout(false); stpBaud.ResumeLayout(false); + tabs1.ResumeLayout(false); + tabPage1.ResumeLayout(false); + panel1.ResumeLayout(false); + tabPage2.ResumeLayout(false); + panel2.ResumeLayout(false); + tabPage3.ResumeLayout(false); + panel3.ResumeLayout(false); + tabPage4.ResumeLayout(false); + panel4.ResumeLayout(false); + tabPage5.ResumeLayout(false); + panel5.ResumeLayout(false); ResumeLayout(false); } @@ -415,8 +725,31 @@ private AntdUI.StackPanel stpBaud; private AntdUI.Select cmbBaudRate; private AntdUI.Label label3; + private AntdUI.Tabs tabs1; + private AntdUI.TabPage tabPage1; + private AntdUI.TabPage tabPage2; + private AntdUI.TabPage tabPage3; + private AntdUI.TabPage tabPage4; + private AntdUI.TabPage tabPage5; private AntdUI.Table PLCItemsTable; + private AntdUI.Panel panel1; private AntdUI.Button btnDelete; private AntdUI.Button btnAdd; + private AntdUI.Table TableSartProcess; + private AntdUI.Panel panel2; + private AntdUI.Button btnSartProcessDelete; + private AntdUI.Button btnSartProcessAdd; + private AntdUI.Table TableStopProcess; + private AntdUI.Panel panel3; + private AntdUI.Button btnStopProcessDelete; + private AntdUI.Button btnStopProcessAdd; + private AntdUI.Table TableStartReset; + private AntdUI.Panel panel4; + private AntdUI.Button btnStartResetDelete; + private AntdUI.Button btnStartResetAdd; + private AntdUI.Table TableStopReset; + private AntdUI.Panel panel5; + private AntdUI.Button btnStopResetDelete; + private AntdUI.Button btnStopResetAdd; } } diff --git a/DHSoftware/Views/MotionControl.cs b/DHSoftware/Views/MotionControl.cs index 1a3c4d7..67c5d05 100644 --- a/DHSoftware/Views/MotionControl.cs +++ b/DHSoftware/Views/MotionControl.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.ComponentModel; using System.Data; +using System.Diagnostics; using System.Drawing; using System.IO.Ports; using System.Linq; @@ -18,26 +19,513 @@ namespace DHSoftware.Views { public partial class MotionControl : UserControl { - Window window; - PLCBase pLCBase; - public MotionControl(Window _window,PLCBase _pLCBase) + private Window window; + private PLCBase pLCBase; + + public MotionControl(Window _window, PLCBase _pLCBase) { - window= _window; - pLCBase= _pLCBase; + window = _window; + pLCBase = _pLCBase; InitializeComponent(); BindEventHandler(); InitData(); SetupDataBindings(); } - - private void BindEventHandler() { sltTpye.TextChanged += SltTpye_TextChanged; btnAdd.Click += BtnAdd_Click; btnDelete.Click += BtnDelete_Click; - PLCItemsTable.CellButtonClick += PLCItemsTable_CellButtonClick; ; + PLCItemsTable.CellButtonClick += PLCItemsTable_CellButtonClick; + + btnSartProcessAdd.Click += BtnSartProcessAdd_Click; + btnSartProcessDelete.Click += BtnSartProcessDelete_Click; + TableSartProcess.CellButtonClick += TableSartProcess_CellButtonClick; + + btnStopProcessAdd.Click += BtnStopProcessAdd_Click; + btnStopProcessDelete.Click += BtnStopProcessDelete_Click; + TableStopProcess.CellButtonClick += TableStopProcess_CellButtonClick; + + btnStartResetAdd.Click += BtnStartResetAdd_Click; + btnStartResetDelete.Click += BtnStartResetDelete_Click; + TableStartReset.CellButtonClick += TableStartReset_CellButtonClick; + + btnStopResetAdd.Click += BtnStopResetAdd_Click; + btnStopResetDelete.Click += BtnStopResetDelete_Click; + TableStopReset.CellButtonClick += TableStopReset_CellButtonClick; + } + + private void TableStopReset_CellButtonClick(object sender, TableButtonEventArgs e) + { + var buttontext = e.Btn.Text; + + if (e.Record is PLCItem pLCItem) + { + switch (buttontext) + { + //暂不支持进入整行编辑,只支持指定单元格编辑,推荐使用弹窗或抽屉编辑整行数据 + case "编辑": + var form = new MotionProcessEdit(window, "复位结束表操作-编辑", pLCItem, pLCBase.PLCItemList) { Size = new Size(500, 300) }; + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入复位结束表编辑", autoClose: 1); + }, + OnClose = () => + { + AntdUI.Message.info(window, "退出复位结束表编辑", autoClose: 1); + } + }); + break; + + case "删除": + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + pLCBase.PLCStopResetList.Remove(pLCItem); + } + break; + + case "上移": + if (e.RowIndex <= 1) + { + AntdUI.Message.warn(window, "已是第一条,无法上移!", autoClose: 3); + return; + } + MoveItemUp(pLCBase.PLCStopResetList, pLCItem); + break; + + case "下移": + if (e.RowIndex > pLCBase.PLCStopResetList.Count - 1) + { + AntdUI.Message.warn(window, "已是最后一条,无法下移!", autoClose: 3); + return; + } + MoveItemDown(pLCBase.PLCStopResetList, pLCItem); + break; + } + } + } + + private void BtnStopResetDelete_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCStopResetList.Count == 0 || !pLCBase.PLCStopResetList.Any(x => x.Selected)) + { + AntdUI.Message.warn(window, "请选择要删除的行!", autoClose: 3); + return; + } + + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + // 使用反转for循环删除主列表中选中的项 + for (int i = pLCBase.PLCStopResetList.Count - 1; i >= 0; i--) + { + // 删除选中的主列表项 + if (pLCBase.PLCStopResetList[i].Selected) + { + pLCBase.PLCStopResetList.RemoveAt(i); + } + } + // 提示删除完成 + AntdUI.Message.success(window, "删除成功!", autoClose: 3); + } + } + + private void BtnStopResetAdd_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCItemList?.Count == 0) + { + AntdUI.Message.warn(window, "点位表无数据,不允许新增!", autoClose: 3); + return; + } + + PLCItem pLCItem = new PLCItem() + { + StartIndex = pLCBase.PLCStopResetList.Count + 1, + CellLinks = new CellLink[] + { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + } + }; + + var form = new MotionProcessEdit(window, "复位结束表操作-新增", pLCItem, pLCBase.PLCItemList) { Size = new Size(450, 550) }; + + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入复位结束表新增", autoClose: 1); + }, + OnClose = () => + { + if (form.submit) + { + pLCBase.PLCStopResetList.Add(pLCItem); + } + + AntdUI.Message.info(window, "退出复位结束表新增", autoClose: 1); + } + }); + } + + private void TableStartReset_CellButtonClick(object sender, TableButtonEventArgs e) + { + var buttontext = e.Btn.Text; + + if (e.Record is PLCItem pLCItem) + { + switch (buttontext) + { + //暂不支持进入整行编辑,只支持指定单元格编辑,推荐使用弹窗或抽屉编辑整行数据 + case "编辑": + var form = new MotionProcessEdit(window, "复位开始表操作-编辑", pLCItem, pLCBase.PLCItemList) { Size = new Size(500, 300) }; + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入复位开始表编辑", autoClose: 1); + }, + OnClose = () => + { + AntdUI.Message.info(window, "退出复位开始表编辑", autoClose: 1); + } + }); + break; + + case "删除": + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + pLCBase.PLCStartResetList.Remove(pLCItem); + } + break; + + case "上移": + if (e.RowIndex <= 1) + { + AntdUI.Message.warn(window, "已是第一条,无法上移!", autoClose: 3); + return; + } + MoveItemUp(pLCBase.PLCStartResetList, pLCItem); + break; + + case "下移": + if (e.RowIndex > pLCBase.PLCStartResetList.Count - 1) + { + AntdUI.Message.warn(window, "已是最后一条,无法下移!", autoClose: 3); + return; + } + MoveItemDown(pLCBase.PLCStartResetList, pLCItem); + break; + } + } + } + + private void BtnStartResetDelete_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCStartResetList.Count == 0 || !pLCBase.PLCStartResetList.Any(x => x.Selected)) + { + AntdUI.Message.warn(window, "请选择要删除的行!", autoClose: 3); + return; + } + + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + // 使用反转for循环删除主列表中选中的项 + for (int i = pLCBase.PLCStartResetList.Count - 1; i >= 0; i--) + { + // 删除选中的主列表项 + if (pLCBase.PLCStartResetList[i].Selected) + { + pLCBase.PLCStartResetList.RemoveAt(i); + } + } + // 提示删除完成 + AntdUI.Message.success(window, "删除成功!", autoClose: 3); + } + } + + private void BtnStartResetAdd_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCItemList?.Count == 0) + { + AntdUI.Message.warn(window, "点位表无数据,不允许新增!", autoClose: 3); + return; + } + + PLCItem pLCItem = new PLCItem() + { + StartIndex = pLCBase.PLCStartResetList.Count + 1, + CellLinks = new CellLink[] + { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + } + }; + + var form = new MotionProcessEdit(window, "复位开始表操作-新增", pLCItem, pLCBase.PLCItemList) { Size = new Size(450, 550) }; + + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入复位开始表新增", autoClose: 1); + }, + OnClose = () => + { + if (form.submit) + { + pLCBase.PLCStartResetList.Add(pLCItem); + } + + AntdUI.Message.info(window, "退出复位开始表新增", autoClose: 1); + } + }); + } + + private void TableStopProcess_CellButtonClick(object sender, TableButtonEventArgs e) + { + var buttontext = e.Btn.Text; + + if (e.Record is PLCItem pLCItem) + { + switch (buttontext) + { + //暂不支持进入整行编辑,只支持指定单元格编辑,推荐使用弹窗或抽屉编辑整行数据 + case "编辑": + var form = new MotionProcessEdit(window, "流程结束表操作-编辑", pLCItem, pLCBase.PLCItemList) { Size = new Size(500, 300) }; + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入流程结束表编辑", autoClose: 1); + }, + OnClose = () => + { + AntdUI.Message.info(window, "退出流程结束表编辑", autoClose: 1); + } + }); + break; + + case "删除": + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + pLCBase.PLCStopProcessList.Remove(pLCItem); + } + break; + + case "上移": + if (e.RowIndex <= 1) + { + AntdUI.Message.warn(window, "已是第一条,无法上移!", autoClose: 3); + return; + } + MoveItemUp(pLCBase.PLCStopProcessList, pLCItem); + break; + + case "下移": + if (e.RowIndex > pLCBase.PLCStopProcessList.Count - 1) + { + AntdUI.Message.warn(window, "已是最后一条,无法下移!", autoClose: 3); + return; + } + MoveItemDown(pLCBase.PLCStopProcessList, pLCItem); + break; + } + } + } + + private void BtnStopProcessDelete_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCStopProcessList.Count == 0 || !pLCBase.PLCStopProcessList.Any(x => x.Selected)) + { + AntdUI.Message.warn(window, "请选择要删除的行!", autoClose: 3); + return; + } + + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + // 使用反转for循环删除主列表中选中的项 + for (int i = pLCBase.PLCStopProcessList.Count - 1; i >= 0; i--) + { + // 删除选中的主列表项 + if (pLCBase.PLCStopProcessList[i].Selected) + { + pLCBase.PLCStopProcessList.RemoveAt(i); + } + } + // 提示删除完成 + AntdUI.Message.success(window, "删除成功!", autoClose: 3); + } + } + + private void BtnStopProcessAdd_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCItemList?.Count == 0) + { + AntdUI.Message.warn(window, "点位表无数据,不允许新增!", autoClose: 3); + return; + } + + PLCItem pLCItem = new PLCItem() + { + StartIndex = pLCBase.PLCStopProcessList.Count + 1, + CellLinks = new CellLink[] + { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + } + }; + + var form = new MotionProcessEdit(window, "流程结束表操作-新增", pLCItem, pLCBase.PLCItemList) { Size = new Size(450, 550) }; + + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入流程结束表新增", autoClose: 1); + }, + OnClose = () => + { + if (form.submit) + { + pLCBase.PLCStopProcessList.Add(pLCItem); + } + + AntdUI.Message.info(window, "退出流程结束表新增", autoClose: 1); + } + }); + } + + private void TableSartProcess_CellButtonClick(object sender, TableButtonEventArgs e) + { + var buttontext = e.Btn.Text; + + if (e.Record is PLCItem pLCItem) + { + switch (buttontext) + { + //暂不支持进入整行编辑,只支持指定单元格编辑,推荐使用弹窗或抽屉编辑整行数据 + case "编辑": + var form = new MotionProcessEdit(window, "流程开始表操作-编辑", pLCItem, pLCBase.PLCItemList) { Size = new Size(500, 300) }; + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入流程开始表编辑", autoClose: 1); + }, + OnClose = () => + { + AntdUI.Message.info(window, "退出流程开始表编辑", autoClose: 1); + } + }); + break; + + case "删除": + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + pLCBase.PLCStartProcessList.Remove(pLCItem); + } + break; + + case "上移": + if (e.RowIndex <= 1) + { + AntdUI.Message.warn(window, "已是第一条,无法上移!", autoClose: 3); + return; + } + MoveItemUp(pLCBase.PLCStartProcessList, pLCItem); + break; + + case "下移": + if (e.RowIndex > pLCBase.PLCStartProcessList.Count - 1) + { + AntdUI.Message.warn(window, "已是最后一条,无法下移!", autoClose: 3); + return; + } + MoveItemDown(pLCBase.PLCStartProcessList, pLCItem); + break; + } + } + } + + private void BtnSartProcessDelete_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCStartProcessList.Count == 0 || !pLCBase.PLCStartProcessList.Any(x => x.Selected)) + { + AntdUI.Message.warn(window, "请选择要删除的行!", autoClose: 3); + return; + } + + var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); + if (result == DialogResult.OK) + { + // 使用反转for循环删除主列表中选中的项 + for (int i = pLCBase.PLCStartProcessList.Count - 1; i >= 0; i--) + { + // 删除选中的主列表项 + if (pLCBase.PLCStartProcessList[i].Selected) + { + pLCBase.PLCStartProcessList.RemoveAt(i); + } + } + // 提示删除完成 + AntdUI.Message.success(window, "删除成功!", autoClose: 3); + } + } + + private void BtnSartProcessAdd_Click(object? sender, EventArgs e) + { + if (pLCBase.PLCItemList?.Count == 0) + { + AntdUI.Message.warn(window, "点位表无数据,不允许新增!", autoClose: 3); + return; + } + + PLCItem pLCItem = new PLCItem() + { + StartIndex = pLCBase.PLCStartProcessList.Count + 1, + CellLinks = new CellLink[] + { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + } + }; + + var form = new MotionProcessEdit(window, "流程开始表操作-新增", pLCItem, pLCBase.PLCItemList) { Size = new Size(450, 550) }; + + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) + { + OnLoad = () => + { + AntdUI.Message.info(window, "进入流程开始表新增", autoClose: 1); + }, + OnClose = () => + { + if (form.submit) + { + pLCBase.PLCStartProcessList.Add(pLCItem); + } + + AntdUI.Message.info(window, "退出流程开始表新增", autoClose: 1); + } + }); } private void PLCItemsTable_CellButtonClick(object sender, TableButtonEventArgs e) @@ -50,7 +538,7 @@ namespace DHSoftware.Views { //暂不支持进入整行编辑,只支持指定单元格编辑,推荐使用弹窗或抽屉编辑整行数据 case "编辑": - var form = new MotionEdit(window, pLCItem) { Size = new Size(500, 300) }; + var form = new MotionEdit(window, "点位表操作-编辑", pLCItem) { Size = new Size(500, 300) }; AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) { OnLoad = () => @@ -59,26 +547,11 @@ namespace DHSoftware.Views }, OnClose = () => { - pLCItem.CellTags = new CellTag[] { }; - var tempList = pLCItem.CellTags.ToList(); - - if (pLCItem.StartExecute) - { - var newTag = new CellTag($"ON_{pLCItem.StartIndex}", TTypeMini.Primary); - tempList.Add(newTag); - } - if (pLCItem.EndExecute) - { - var newTag = new CellTag($"OFF_{pLCItem.EndIndex}", TTypeMini.Warn); - tempList.Add(newTag); - } - - // 重新赋值回数组 - pLCItem.CellTags = tempList.ToArray(); AntdUI.Message.info(window, "结束编辑", autoClose: 1); } }); break; + case "删除": var result = Modal.open(window, "删除警告!", "确认要删除选择的数据吗?", TType.Warn); if (result == DialogResult.OK) @@ -87,6 +560,62 @@ namespace DHSoftware.Views } break; + case "上移": + if (e.RowIndex <= 1) + { + AntdUI.Message.warn(window, "已是第一条,无法上移!", autoClose: 3); + return; + } + MoveItemUp(pLCBase.PLCItemList, pLCItem); + break; + + case "下移": + if (e.RowIndex > pLCBase.PLCItemList.Count - 1) + { + AntdUI.Message.warn(window, "已是最后一条,无法下移!", autoClose: 3); + return; + } + MoveItemDown(pLCBase.PLCItemList, pLCItem); + break; + } + } + } + + // 上移项 + public static void MoveItemUp(BindingList list, PLCItem item) + { + int index = list.IndexOf(item); + if (index > 0) + { + // 移除并插入到前一位 + list.RemoveAt(index); + list.Insert(index - 1, item); + UpdateStartIndexes(list); // 更新序号 + } + } + + // 下移项 + public static void MoveItemDown(BindingList list, PLCItem item) + { + int index = list.IndexOf(item); + if (index < list.Count - 1) + { + // 移除并插入到后一位 + list.RemoveAt(index); + list.Insert(index + 1, item); + UpdateStartIndexes(list); // 更新序号 + } + } + + // 更新所有项的序号 + public static void UpdateStartIndexes(BindingList list) + { + for (int i = 0; i < list.Count; i++) + { + PLCItem item = list[i]; + if (item.StartIndex != i + 1) + { + item.StartIndex = i + 1; // 触发 PropertyChanged 事件 } } } @@ -120,40 +649,43 @@ namespace DHSoftware.Views { PLCItem pLCItem = new PLCItem() { + StartIndex = pLCBase.PLCItemList.Count + 1, CellLinks = new CellLink[] - { - new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), - new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + { new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary), + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) } }; - var form = new MotionEdit(window, pLCItem) { Size = new Size(450, 550) }; - AntdUI.Modal.open(new AntdUI.Modal.Config(window, "", form, TType.None) + var form = new MotionEdit(window, "点位表操作-新增", pLCItem) { Size = new Size(450, 550) }; + + AntdUI.Drawer.open(new AntdUI.Drawer.Config(window, form) { - BtnHeight = 0, + OnLoad = () => + { + AntdUI.Message.info(window, "进入新增", autoClose: 1); + }, + OnClose = () => + { + if (form.submit) + { + pLCBase.PLCItemList.Add(pLCItem); + } + + AntdUI.Message.info(window, "结束新增", autoClose: 1); + } }); - if (form.submit) - { - pLCItem.CellTags = new CellTag[] { }; - var tempList = pLCItem.CellTags.ToList(); + //AntdUI.Modal.open(new AntdUI.Modal.Config(window, "", form, TType.None) + //{ + // BtnHeight = 0, + //}); - if (pLCItem.StartExecute) - { - var newTag = new CellTag($"ON_{pLCItem.StartIndex}", TTypeMini.Primary); - tempList.Add(newTag); - } - if (pLCItem.EndExecute) - { - var newTag = new CellTag($"OFF_{pLCItem.EndIndex}", TTypeMini.Warn); - tempList.Add(newTag); - } - - // 重新赋值回数组 - pLCItem.CellTags = tempList.ToArray(); - - pLCBase.PLCItemList.Add(pLCItem); - } + //if (form.submit) + //{ + // pLCBase.PLCItemList.Add(pLCItem); + //} } private void SltTpye_TextChanged(object? sender, EventArgs e) @@ -193,24 +725,17 @@ namespace DHSoftware.Views } else { - } } } - - - - - - private void InitData() { // 获取枚举字段名列表(原描述改为字段名) sltTpye.Items.Clear(); foreach (EnumPLCType value in Enum.GetValues(typeof(EnumPLCType))) { - sltTpye.Items.Add(value.ToString()); + sltTpye.Items.Add(value.ToString()); } // 波特率选项(保持不变) @@ -242,46 +767,122 @@ namespace DHSoftware.Views PLCItemsTable.Columns = new ColumnCollection() { new ColumnCheck("Selected"){Fixed = true}, + new Column("StartIndex", "序号", ColumnAlign.Center), new Column("Name", "名称", ColumnAlign.Center), new Column("Type", "类型",ColumnAlign.Center), new Column("Address", "地址",ColumnAlign.Center), - new Column("Value", "值",ColumnAlign.Center), - new Column("CellTags", "标签",ColumnAlign.Center), new Column("CellLinks", "操作", ColumnAlign.Center) }; - if (pLCBase.PLCItemList.Count > 0) + if (pLCBase.PLCItemList.Count > 0) { - foreach( var item in pLCBase.PLCItemList) + foreach (var item in pLCBase.PLCItemList) { - item.CellTags = new CellTag[] { }; - var tempList = item.CellTags.ToList(); - - if (item.StartExecute) - { - var newTag = new CellTag($"ON_{item.StartIndex}", TTypeMini.Primary); - tempList.Add(newTag); - } - if (item.EndExecute) - { - var newTag = new CellTag($"OFF_{item.EndIndex}", TTypeMini.Warn); - tempList.Add(newTag); - } - - // 重新赋值回数组 - item.CellTags = tempList.ToArray(); - - - - item.CellLinks = new CellLink[] { + item.CellLinks = new CellLink[] { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary) , new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) }; } } PLCItemsTable.Binding(pLCBase.PLCItemList); - } - + TableSartProcess.Columns = new ColumnCollection() { + new ColumnCheck("Selected"){Fixed = true}, + new Column("StartIndex", "序号", ColumnAlign.Center), + new ColumnSwitch("StartExecute", "启用", ColumnAlign.Center), + new Column("Name", "名称", ColumnAlign.Center), + new Column("Type", "类型",ColumnAlign.Center){Visible=false}, + new Column("Address", "地址",ColumnAlign.Center){Visible=false}, + new Column("Value", "值",ColumnAlign.Center), + new Column("CellLinks", "操作", ColumnAlign.Center) + }; + if (pLCBase.PLCStartProcessList.Count > 0) + { + foreach (var item in pLCBase.PLCStartProcessList) + { + item.CellLinks = new CellLink[] { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary) , + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + }; + } + } + //TableSartProcess.Binding(pLCBase.PLCStartProcessList); + TableSartProcess.Binding(pLCBase.PLCStartProcessList); + TableStopProcess.Columns = new ColumnCollection() { + new ColumnCheck("Selected"){Fixed = true}, + new Column("StartIndex", "序号", ColumnAlign.Center), + new ColumnSwitch("StartExecute", "启用", ColumnAlign.Center), + new Column("Name", "名称", ColumnAlign.Center), + new Column("Type", "类型",ColumnAlign.Center){Visible=false}, + new Column("Address", "地址",ColumnAlign.Center){Visible=false}, + new Column("Value", "值",ColumnAlign.Center), + new Column("CellLinks", "操作", ColumnAlign.Center) + }; + if (pLCBase.PLCStopProcessList.Count > 0) + { + foreach (var item in pLCBase.PLCStopProcessList) + { + item.CellLinks = new CellLink[] { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary) , + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + }; + } + } + TableStopProcess.Binding(pLCBase.PLCStopProcessList); + + TableStartReset.Columns = new ColumnCollection() { + new ColumnCheck("Selected"){Fixed = true}, + new Column("StartIndex", "序号", ColumnAlign.Center), + new ColumnSwitch("StartExecute", "启用", ColumnAlign.Center), + new Column("Name", "名称", ColumnAlign.Center), + new Column("Type", "类型",ColumnAlign.Center){Visible=false}, + new Column("Address", "地址",ColumnAlign.Center){Visible=false}, + new Column("Value", "值",ColumnAlign.Center), + new Column("CellLinks", "操作", ColumnAlign.Center) + }; + if (pLCBase.PLCStartResetList.Count > 0) + { + foreach (var item in pLCBase.PLCStartResetList) + { + item.CellLinks = new CellLink[] { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary) , + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + }; + } + } + TableStartReset.Binding(pLCBase.PLCStartResetList); + + TableStopReset.Columns = new ColumnCollection() { + new ColumnCheck("Selected"){Fixed = true}, + new Column("StartIndex", "序号", ColumnAlign.Center), + new ColumnSwitch("StartExecute", "启用", ColumnAlign.Center), + new Column("Name", "名称", ColumnAlign.Center), + new Column("Type", "类型",ColumnAlign.Center){Visible=false}, + new Column("Address", "地址",ColumnAlign.Center){Visible=false}, + new Column("Value", "值",ColumnAlign.Center), + new Column("CellLinks", "操作", ColumnAlign.Center) + }; + if (pLCBase.PLCStopResetList.Count > 0) + { + foreach (var item in pLCBase.PLCStopResetList) + { + item.CellLinks = new CellLink[] { + new CellButton(Guid.NewGuid().ToString(), "上移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "下移", TTypeMini.Default), + new CellButton(Guid.NewGuid().ToString(), "编辑", TTypeMini.Primary) , + new CellButton(Guid.NewGuid().ToString(), "删除", TTypeMini.Error) + }; + } + } + TableStopReset.Binding(pLCBase.PLCStopResetList); + } private void SetupDataBindings() { @@ -296,9 +897,7 @@ namespace DHSoftware.Views iptIP.DataBindings.Add(nameof(iptIP.Text), pLCBase, nameof(pLCBase.IP)); iptPort.DataBindings.Add(nameof(iptPort.Text), pLCBase, nameof(pLCBase.Port)); - swhEnable.DataBindings.Add(nameof(swhEnable.Checked),pLCBase, nameof(pLCBase.Enable)); + swhEnable.DataBindings.Add(nameof(swhEnable.Checked), pLCBase, nameof(pLCBase.Enable)); } - - } -} +} \ No newline at end of file diff --git a/DHSoftware/Views/MotionEdit.Designer.cs b/DHSoftware/Views/MotionEdit.Designer.cs index 136b497..2b8dc15 100644 --- a/DHSoftware/Views/MotionEdit.Designer.cs +++ b/DHSoftware/Views/MotionEdit.Designer.cs @@ -35,30 +35,14 @@ stackPanel1 = new AntdUI.StackPanel(); button_ok = new AntdUI.Button(); divider1 = new AntdUI.Divider(); - label1 = new AntdUI.Label(); + lbTitleName = new AntdUI.Label(); panel1 = new AntdUI.Panel(); - stackPanel3 = new AntdUI.StackPanel(); - sltEnd = new AntdUI.Select(); - label6 = new AntdUI.Label(); - stackPanel2 = new AntdUI.StackPanel(); - sltStart = new AntdUI.Select(); - label5 = new AntdUI.Label(); - sltBoolValue = new AntdUI.Select(); - stpNum = new AntdUI.StackPanel(); - sltIntType = new AntdUI.Select(); - iptValue = new AntdUI.Input(); - label4 = new AntdUI.Label(); iptAddress = new AntdUI.Input(); label7 = new AntdUI.Label(); sltDataType = new AntdUI.Select(); label3 = new AntdUI.Label(); - iptStartIndex = new AntdUI.InputNumber(); - iptEndIndex = new AntdUI.InputNumber(); stackPanel1.SuspendLayout(); panel1.SuspendLayout(); - stackPanel3.SuspendLayout(); - stackPanel2.SuspendLayout(); - stpNum.SuspendLayout(); SuspendLayout(); // // button_cancel @@ -131,25 +115,18 @@ divider1.Size = new Size(409, 12); divider1.TabIndex = 19; // - // label1 + // lbTitleName // - label1.Dock = DockStyle.Top; - label1.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - label1.Location = new Point(18, 18); - label1.Name = "label1"; - label1.Size = new Size(409, 24); - label1.TabIndex = 17; - label1.Text = "PLC点位操作"; + lbTitleName.Dock = DockStyle.Top; + lbTitleName.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + lbTitleName.Location = new Point(18, 18); + lbTitleName.Name = "lbTitleName"; + lbTitleName.Size = new Size(409, 24); + lbTitleName.TabIndex = 17; + lbTitleName.Text = "PLC点位操作"; // // panel1 // - panel1.Controls.Add(stackPanel3); - panel1.Controls.Add(label6); - panel1.Controls.Add(stackPanel2); - panel1.Controls.Add(label5); - panel1.Controls.Add(sltBoolValue); - panel1.Controls.Add(stpNum); - panel1.Controls.Add(label4); panel1.Controls.Add(iptAddress); panel1.Controls.Add(label7); panel1.Controls.Add(sltDataType); @@ -159,131 +136,16 @@ panel1.Controls.Add(divider2); panel1.Controls.Add(stackPanel1); panel1.Controls.Add(divider1); - panel1.Controls.Add(label1); + panel1.Controls.Add(lbTitleName); panel1.Dock = DockStyle.Fill; panel1.Location = new Point(0, 0); panel1.Name = "panel1"; panel1.Padding = new Padding(12); panel1.Shadow = 6; - panel1.Size = new Size(445, 572); + panel1.Size = new Size(445, 315); panel1.TabIndex = 1; panel1.Text = "panel1"; // - // stackPanel3 - // - stackPanel3.BackColor = SystemColors.Window; - stackPanel3.Controls.Add(iptEndIndex); - stackPanel3.Controls.Add(sltEnd); - stackPanel3.Dock = DockStyle.Top; - stackPanel3.Location = new Point(18, 496); - stackPanel3.Name = "stackPanel3"; - stackPanel3.Size = new Size(409, 45); - stackPanel3.TabIndex = 61; - stackPanel3.Text = "stackPanel3"; - // - // sltEnd - // - sltEnd.Dock = DockStyle.Left; - sltEnd.Items.AddRange(new object[] { "执行", "取消" }); - sltEnd.List = true; - sltEnd.Location = new Point(3, 3); - sltEnd.Name = "sltEnd"; - sltEnd.Size = new Size(268, 39); - sltEnd.TabIndex = 35; - // - // label6 - // - label6.Dock = DockStyle.Top; - label6.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - label6.Location = new Point(18, 472); - label6.Name = "label6"; - label6.Size = new Size(409, 24); - label6.TabIndex = 60; - label6.Text = "流程结束执行"; - // - // stackPanel2 - // - stackPanel2.BackColor = SystemColors.Window; - stackPanel2.Controls.Add(iptStartIndex); - stackPanel2.Controls.Add(sltStart); - stackPanel2.Dock = DockStyle.Top; - stackPanel2.Location = new Point(18, 427); - stackPanel2.Name = "stackPanel2"; - stackPanel2.Size = new Size(409, 45); - stackPanel2.TabIndex = 59; - stackPanel2.Text = "stackPanel2"; - // - // sltStart - // - sltStart.Dock = DockStyle.Left; - sltStart.Items.AddRange(new object[] { "执行", "取消" }); - sltStart.List = true; - sltStart.Location = new Point(3, 3); - sltStart.Name = "sltStart"; - sltStart.Size = new Size(268, 39); - sltStart.TabIndex = 35; - // - // label5 - // - label5.Dock = DockStyle.Top; - label5.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - label5.Location = new Point(18, 403); - label5.Name = "label5"; - label5.Size = new Size(409, 24); - label5.TabIndex = 58; - label5.Text = "流程开始执行"; - // - // sltBoolValue - // - sltBoolValue.Dock = DockStyle.Top; - sltBoolValue.Items.AddRange(new object[] { "True", "False" }); - sltBoolValue.List = true; - sltBoolValue.Location = new Point(18, 365); - sltBoolValue.Name = "sltBoolValue"; - sltBoolValue.Size = new Size(409, 38); - sltBoolValue.TabIndex = 57; - // - // stpNum - // - stpNum.BackColor = SystemColors.Window; - stpNum.Controls.Add(sltIntType); - stpNum.Controls.Add(iptValue); - stpNum.Dock = DockStyle.Top; - stpNum.Location = new Point(18, 320); - stpNum.Name = "stpNum"; - stpNum.Size = new Size(409, 45); - stpNum.TabIndex = 56; - stpNum.Text = "stackPanel2"; - // - // sltIntType - // - sltIntType.Dock = DockStyle.Left; - sltIntType.List = true; - sltIntType.Location = new Point(277, 3); - sltIntType.Name = "sltIntType"; - sltIntType.Size = new Size(132, 39); - sltIntType.TabIndex = 35; - // - // iptValue - // - iptValue.Dock = DockStyle.Left; - iptValue.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - iptValue.Location = new Point(3, 3); - iptValue.Name = "iptValue"; - iptValue.Radius = 3; - iptValue.Size = new Size(268, 39); - iptValue.TabIndex = 24; - // - // label4 - // - label4.Dock = DockStyle.Top; - label4.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - label4.Location = new Point(18, 296); - label4.Name = "label4"; - label4.Size = new Size(409, 24); - label4.TabIndex = 55; - label4.Text = "值"; - // // iptAddress // iptAddress.Dock = DockStyle.Top; @@ -323,40 +185,15 @@ label3.TabIndex = 44; label3.Text = "数据类型"; // - // iptStartIndex - // - iptStartIndex.Location = new Point(277, 3); - iptStartIndex.Maximum = new decimal(new int[] { 99999999, 0, 0, 0 }); - iptStartIndex.Minimum = new decimal(new int[] { 2, 0, 0, int.MinValue }); - iptStartIndex.Name = "iptStartIndex"; - iptStartIndex.Size = new Size(129, 39); - iptStartIndex.TabIndex = 37; - iptStartIndex.Text = "-1"; - iptStartIndex.Value = new decimal(new int[] { 1, 0, 0, int.MinValue }); - // - // iptEndIndex - // - iptEndIndex.Location = new Point(277, 3); - iptEndIndex.Maximum = new decimal(new int[] { 99999999, 0, 0, 0 }); - iptEndIndex.Minimum = new decimal(new int[] { 2, 0, 0, int.MinValue }); - iptEndIndex.Name = "iptEndIndex"; - iptEndIndex.Size = new Size(129, 39); - iptEndIndex.TabIndex = 38; - iptEndIndex.Text = "-1"; - iptEndIndex.Value = new decimal(new int[] { 1, 0, 0, int.MinValue }); - // // MotionEdit // AutoScaleDimensions = new SizeF(7F, 17F); AutoScaleMode = AutoScaleMode.Font; Controls.Add(panel1); Name = "MotionEdit"; - Size = new Size(445, 572); + Size = new Size(445, 315); stackPanel1.ResumeLayout(false); panel1.ResumeLayout(false); - stackPanel3.ResumeLayout(false); - stackPanel2.ResumeLayout(false); - stpNum.ResumeLayout(false); ResumeLayout(false); } @@ -368,24 +205,11 @@ private AntdUI.StackPanel stackPanel1; private AntdUI.Button button_ok; private AntdUI.Divider divider1; - private AntdUI.Label label1; + private AntdUI.Label lbTitleName; private AntdUI.Panel panel1; private AntdUI.Select sltDataType; private AntdUI.Label label3; - private AntdUI.StackPanel stackPanel3; - private AntdUI.Select sltEnd; - private AntdUI.Label label6; - private AntdUI.StackPanel stackPanel2; - private AntdUI.Select sltStart; - private AntdUI.Label label5; - private AntdUI.Select sltBoolValue; - private AntdUI.StackPanel stpNum; - private AntdUI.Select sltIntType; - private AntdUI.Input iptValue; - private AntdUI.Label label4; private AntdUI.Input iptAddress; private AntdUI.Label label7; - private AntdUI.InputNumber iptStartIndex; - private AntdUI.InputNumber iptEndIndex; } } diff --git a/DHSoftware/Views/MotionEdit.cs b/DHSoftware/Views/MotionEdit.cs index 1997406..40e6a4c 100644 --- a/DHSoftware/Views/MotionEdit.cs +++ b/DHSoftware/Views/MotionEdit.cs @@ -10,9 +10,10 @@ namespace DHSoftware.Views private AntdUI.Window window; private PLCItem plcItem; public bool submit; - public MotionEdit(AntdUI.Window _window, PLCItem _plcItem) + public MotionEdit(AntdUI.Window _window,string TitleName, PLCItem _plcItem) { InitializeComponent(); + lbTitleName.Text = TitleName; plcItem = _plcItem; // 绑定事件 BindEventHandler(); @@ -26,29 +27,9 @@ namespace DHSoftware.Views button_cancel.Click += Button_cancel_Click; - sltDataType.SelectedIndexChanged += SltDataType_SelectedIndexChanged; - sltStart.SelectedIndexChanged += SltStart_SelectedIndexChanged; - sltEnd.SelectedIndexChanged += SltEnd_SelectedIndexChanged; + } - private void SltEnd_SelectedIndexChanged(object sender, IntEventArgs e) - { - iptEndIndex.Visible = e.Value == 0; - } - - private void SltDataType_SelectedIndexChanged(object sender, IntEventArgs e) - { - var isMType = e.Value == 2; - stpNum.Visible = !isMType; - sltBoolValue.Visible = isMType; - } - - private void SltStart_SelectedIndexChanged(object sender, IntEventArgs e) - { - iptStartIndex.Visible = e.Value == 0; - } - - private void Button_cancel_Click(object sender, EventArgs e) { @@ -66,17 +47,9 @@ namespace DHSoftware.Views AntdUI.Message.warn(window, "参数名称不能为空!", autoClose: 3); return; } - plcItem.Name = sltName.Text; plcItem.Address = iptAddress.Text; - plcItem.Type = sltDataType.Text; - plcItem.Value = sltDataType.SelectedIndex == 2 ? sltBoolValue.Text : iptValue.Text; - plcItem.NumTpye = sltDataType.SelectedIndex == 2 ? string.Empty : sltIntType.Text; - plcItem.StartExecute = sltStart.Text == "执行" ? true : false; - plcItem.StartIndex = sltStart.Text == "执行" ? Convert.ToInt32(iptStartIndex.Value) : -1; - plcItem.EndExecute = sltEnd.Text == "执行" ? true : false; - plcItem.EndIndex = sltEnd.Text == "执行" ? Convert.ToInt32(iptEndIndex.Value) : -1; - + plcItem.Type = (EnumPLCDataType)sltDataType.SelectedIndex; submit = true; this.Dispose(); } @@ -94,29 +67,14 @@ namespace DHSoftware.Views sltDataType.Items.Add(name); } sltDataType.SelectedIndex = 0; - var PLCINTTypes = Enum.GetNames(typeof(EnumPLCINTType)); - foreach (var name in PLCINTTypes) - { - sltIntType.Items.Add(name); - } - - sltStart.SelectedIndex = 1; - sltEnd.SelectedIndex = 1; + if (!string.IsNullOrEmpty(plcItem.Name)) { sltName.Text = plcItem.Name; iptAddress.Text = plcItem.Address; - sltDataType.SelectedValue = plcItem.Type; - iptValue.Text = sltDataType.SelectedIndex != 2 ? plcItem.Value : string.Empty; - sltBoolValue.SelectedValue = sltDataType.SelectedIndex == 2 ? plcItem.Value : string.Empty; - sltIntType.SelectedValue = sltDataType.SelectedIndex == 2 ? string.Empty : plcItem.NumTpye; - sltStart.SelectedValue = plcItem.StartExecute == true ? "执行" : "取消"; - sltEnd.SelectedValue = plcItem.EndExecute == true ? "执行" : "取消"; - iptStartIndex.Value = plcItem.StartExecute == true ? plcItem.StartIndex : -1; - iptEndIndex.Value = plcItem.EndExecute == true ? plcItem.EndIndex : -1; - - + sltDataType.SelectedIndex =(int)plcItem.Type; + } } diff --git a/DHSoftware/Views/MotionEdit.resx b/DHSoftware/Views/MotionEdit.resx index af32865..8b2ff64 100644 --- a/DHSoftware/Views/MotionEdit.resx +++ b/DHSoftware/Views/MotionEdit.resx @@ -1,7 +1,7 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file