This commit is contained in:
2025-04-16 08:52:53 +08:00
parent 72b67b6a2f
commit 28e15a556d
17 changed files with 965 additions and 294 deletions

View File

@ -37,12 +37,16 @@
button_ok = new AntdUI.Button();
divider2 = new AntdUI.Divider();
lbTitleName = new AntdUI.Label();
sltdetectionType = new AntdUI.Select();
label1 = new AntdUI.Label();
panel1.SuspendLayout();
stackPanel1.SuspendLayout();
SuspendLayout();
//
// panel1
//
panel1.Controls.Add(sltdetectionType);
panel1.Controls.Add(label1);
panel1.Controls.Add(input_name);
panel1.Controls.Add(label3);
panel1.Controls.Add(divider1);
@ -54,7 +58,7 @@
panel1.Name = "panel1";
panel1.Padding = new Padding(12);
panel1.Shadow = 6;
panel1.Size = new Size(500, 194);
panel1.Size = new Size(500, 243);
panel1.TabIndex = 0;
panel1.Text = "panel1";
//
@ -137,11 +141,31 @@
lbTitleName.TabIndex = 17;
lbTitleName.Text = "新增工位操作";
//
// sltdetectionType
//
sltdetectionType.Dock = DockStyle.Top;
sltdetectionType.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);
sltdetectionType.Location = new Point(18, 196);
sltdetectionType.Name = "sltdetectionType";
sltdetectionType.Radius = 3;
sltdetectionType.Size = new Size(464, 38);
sltdetectionType.TabIndex = 24;
//
// label1
//
label1.Dock = DockStyle.Top;
label1.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
label1.Location = new Point(18, 172);
label1.Name = "label1";
label1.Size = new Size(464, 24);
label1.TabIndex = 23;
label1.Text = "检测类型";
//
// AddCubicleControl
//
Controls.Add(panel1);
Name = "AddCubicleControl";
Size = new Size(500, 194);
Size = new Size(500, 243);
panel1.ResumeLayout(false);
stackPanel1.ResumeLayout(false);
ResumeLayout(false);
@ -158,5 +182,7 @@
private AntdUI.Button button_cancel;
private AntdUI.Button button_ok;
private AntdUI.Divider divider2;
private AntdUI.Select sltdetectionType;
private AntdUI.Label label1;
}
}