DHDHSoftware/DHSoftware/Views/PreTreatUserControl.Designer.cs

214 lines
7.5 KiB
C#
Raw Normal View History

2025-03-13 18:54:05 +08:00
namespace DHSoftware.Views
{
partial class PreTreatUserControl
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
btnPreOpen = new AntdUI.Button();
tbxPrePath = new TextBox();
label1 = new AntdUI.Label();
panel1 = new Panel();
2025-03-15 09:47:09 +08:00
btnOParmDel = new Panel();
2025-03-13 18:54:05 +08:00
label3 = new Label();
2025-03-15 09:47:09 +08:00
btnDelOParm = new AntdUI.Button();
tbOutputParm = new AntdUI.Table();
btnAddOParm = new AntdUI.Button();
2025-03-13 19:27:31 +08:00
panel2 = new Panel();
label2 = new Label();
2025-03-15 09:47:09 +08:00
btnDelIParm = new AntdUI.Button();
tbInputParm = new AntdUI.Table();
btnAddIParm = new AntdUI.Button();
2025-03-13 18:54:05 +08:00
panel1.SuspendLayout();
2025-03-15 09:47:09 +08:00
btnOParmDel.SuspendLayout();
2025-03-13 19:27:31 +08:00
panel2.SuspendLayout();
2025-03-13 18:54:05 +08:00
SuspendLayout();
//
// btnPreOpen
//
2025-03-15 09:47:09 +08:00
btnPreOpen.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
btnPreOpen.Location = new Point(570, 17);
2025-03-13 18:54:05 +08:00
btnPreOpen.Name = "btnPreOpen";
2025-03-15 09:47:09 +08:00
btnPreOpen.Size = new Size(28, 23);
2025-03-13 18:54:05 +08:00
btnPreOpen.TabIndex = 21;
btnPreOpen.Text = "...";
2025-03-16 13:14:05 +08:00
btnPreOpen.Click += btnPreOpen_Click;
2025-03-13 18:54:05 +08:00
//
// tbxPrePath
//
tbxPrePath.Location = new Point(91, 17);
tbxPrePath.Name = "tbxPrePath";
2025-03-15 09:47:09 +08:00
tbxPrePath.Size = new Size(473, 23);
2025-03-13 18:54:05 +08:00
tbxPrePath.TabIndex = 20;
//
// label1
//
label1.Location = new Point(12, 17);
label1.Name = "label1";
label1.Size = new Size(73, 23);
label1.TabIndex = 19;
label1.Text = "预处理路径";
//
// panel1
//
2025-03-15 09:47:09 +08:00
panel1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
2025-03-13 19:27:31 +08:00
panel1.BorderStyle = BorderStyle.FixedSingle;
2025-03-15 09:47:09 +08:00
panel1.Controls.Add(btnOParmDel);
2025-03-13 18:54:05 +08:00
panel1.Controls.Add(panel2);
panel1.Controls.Add(label1);
panel1.Controls.Add(btnPreOpen);
panel1.Controls.Add(tbxPrePath);
panel1.Location = new Point(0, 0);
panel1.Name = "panel1";
2025-03-15 09:47:09 +08:00
panel1.Size = new Size(633, 243);
2025-03-13 18:54:05 +08:00
panel1.TabIndex = 22;
//
2025-03-15 09:47:09 +08:00
// btnOParmDel
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
btnOParmDel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
btnOParmDel.Controls.Add(label3);
btnOParmDel.Controls.Add(btnDelOParm);
btnOParmDel.Controls.Add(tbOutputParm);
btnOParmDel.Controls.Add(btnAddOParm);
btnOParmDel.Location = new Point(352, 44);
btnOParmDel.Name = "btnOParmDel";
btnOParmDel.Size = new Size(246, 194);
btnOParmDel.TabIndex = 26;
2025-03-13 18:54:05 +08:00
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(3, 2);
label3.Name = "label3";
label3.Size = new Size(56, 17);
label3.TabIndex = 25;
label3.Text = "输出参数";
//
2025-03-15 09:47:09 +08:00
// btnDelOParm
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
btnDelOParm.Location = new Point(93, 25);
btnDelOParm.Name = "btnDelOParm";
btnDelOParm.Size = new Size(84, 34);
btnDelOParm.TabIndex = 24;
btnDelOParm.Text = "删除";
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
// tbOutputParm
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
tbOutputParm.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
tbOutputParm.Location = new Point(3, 65);
tbOutputParm.Name = "tbOutputParm";
tbOutputParm.Size = new Size(240, 126);
tbOutputParm.TabIndex = 22;
tbOutputParm.Text = "table2";
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
// btnAddOParm
2025-03-13 18:54:05 +08:00
//
2025-03-15 09:47:09 +08:00
btnAddOParm.Location = new Point(3, 25);
btnAddOParm.Name = "btnAddOParm";
btnAddOParm.Size = new Size(84, 34);
btnAddOParm.TabIndex = 23;
btnAddOParm.Text = "新增";
2025-03-13 18:54:05 +08:00
//
2025-03-13 19:27:31 +08:00
// panel2
//
panel2.Controls.Add(label2);
2025-03-15 09:47:09 +08:00
panel2.Controls.Add(btnDelIParm);
panel2.Controls.Add(tbInputParm);
panel2.Controls.Add(btnAddIParm);
panel2.Location = new Point(12, 45);
2025-03-13 19:27:31 +08:00
panel2.Name = "panel2";
panel2.Size = new Size(264, 194);
panel2.TabIndex = 25;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(3, 5);
label2.Name = "label2";
label2.Size = new Size(56, 17);
label2.TabIndex = 25;
label2.Text = "输入参数";
//
2025-03-15 09:47:09 +08:00
// btnDelIParm
2025-03-13 19:27:31 +08:00
//
2025-03-15 09:47:09 +08:00
btnDelIParm.Location = new Point(93, 25);
btnDelIParm.Name = "btnDelIParm";
btnDelIParm.Size = new Size(84, 34);
btnDelIParm.TabIndex = 24;
btnDelIParm.Text = "删除";
2025-03-13 19:27:31 +08:00
//
2025-03-15 09:47:09 +08:00
// tbInputParm
2025-03-13 19:27:31 +08:00
//
2025-03-15 09:47:09 +08:00
tbInputParm.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
tbInputParm.Location = new Point(3, 65);
tbInputParm.Name = "tbInputParm";
tbInputParm.Size = new Size(258, 126);
tbInputParm.TabIndex = 22;
tbInputParm.Text = "table1";
2025-03-13 19:27:31 +08:00
//
2025-03-15 09:47:09 +08:00
// btnAddIParm
2025-03-13 19:27:31 +08:00
//
2025-03-15 09:47:09 +08:00
btnAddIParm.Location = new Point(3, 25);
btnAddIParm.Name = "btnAddIParm";
btnAddIParm.Size = new Size(84, 34);
btnAddIParm.TabIndex = 23;
btnAddIParm.Text = "新增";
2025-03-13 19:27:31 +08:00
//
2025-03-13 18:54:05 +08:00
// PreTreatUserControl
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(panel1);
Name = "PreTreatUserControl";
2025-03-15 09:47:09 +08:00
Size = new Size(635, 243);
2025-03-13 18:54:05 +08:00
panel1.ResumeLayout(false);
panel1.PerformLayout();
2025-03-15 09:47:09 +08:00
btnOParmDel.ResumeLayout(false);
btnOParmDel.PerformLayout();
2025-03-13 19:27:31 +08:00
panel2.ResumeLayout(false);
panel2.PerformLayout();
2025-03-13 18:54:05 +08:00
ResumeLayout(false);
}
#endregion
private AntdUI.Button btnPreOpen;
private TextBox tbxPrePath;
private AntdUI.Label label1;
private Panel panel1;
2025-03-15 09:47:09 +08:00
private AntdUI.Button btnDelIParm;
private AntdUI.Button btnAddIParm;
private AntdUI.Table tbInputParm;
2025-03-13 18:54:05 +08:00
private Panel panel2;
2025-03-15 09:47:09 +08:00
private Panel btnOParmDel;
2025-03-13 18:54:05 +08:00
private Label label3;
2025-03-15 09:47:09 +08:00
private AntdUI.Button btnDelOParm;
private AntdUI.Table tbOutputParm;
private AntdUI.Button btnAddOParm;
2025-03-13 18:54:05 +08:00
private Label label2;
}
}