提交整体修改

This commit is contained in:
2025-03-27 11:37:48 +08:00
parent 1046978877
commit 2d98b2d8b8
22 changed files with 2560 additions and 2032 deletions

View File

@ -37,6 +37,7 @@
divider1 = new AntdUI.Divider();
lbTitleName = new AntdUI.Label();
panel1 = new AntdUI.Panel();
sltValue = new AntdUI.Select();
iptValue = new AntdUI.Input();
label1 = new AntdUI.Label();
iptAddress = new AntdUI.Input();
@ -131,6 +132,7 @@
//
// panel1
//
panel1.Controls.Add(sltValue);
panel1.Controls.Add(iptValue);
panel1.Controls.Add(label1);
panel1.Controls.Add(iptAddress);
@ -150,21 +152,32 @@
panel1.Name = "panel1";
panel1.Padding = new Padding(12);
panel1.Shadow = 6;
panel1.Size = new Size(445, 451);
panel1.Size = new Size(445, 549);
panel1.TabIndex = 1;
panel1.Text = "panel1";
panel1.Click += panel1_Click;
//
// sltValue
//
sltValue.Dock = DockStyle.Top;
sltValue.List = true;
sltValue.Location = new Point(18, 420);
sltValue.Name = "sltValue";
sltValue.Size = new Size(409, 38);
sltValue.TabIndex = 63;
sltValue.Visible = false;
//
// iptValue
//
iptValue.Dock = DockStyle.Top;
iptValue.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);
iptValue.Location = new Point(18, 382);
iptValue.Name = "iptValue";
iptValue.PlaceholderText = "布尔类型1(true)或0(false),其它类型实值";
iptValue.PlaceholderText = "";
iptValue.Radius = 3;
iptValue.Size = new Size(409, 38);
iptValue.TabIndex = 62;
iptValue.Visible = false;
//
// label1
//
@ -242,7 +255,7 @@
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(panel1);
Name = "MotionProcessEdit";
Size = new Size(445, 451);
Size = new Size(445, 549);
stackPanel1.ResumeLayout(false);
panel1.ResumeLayout(false);
ResumeLayout(false);
@ -266,5 +279,6 @@
private AntdUI.Label label7;
private AntdUI.Select sltDataType;
private AntdUI.Label label4;
private AntdUI.Select sltValue;
}
}