UCStoreMachine.Designer.cs
5.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
namespace TheMachine
{
partial class UCStoreMachine
{
/// <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()
{
this.tabc = new System.Windows.Forms.TabControl();
this.btn_stop = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.checkBox_disable = new System.Windows.Forms.CheckBox();
this.listView = new System.Windows.Forms.ListView();
this.SuspendLayout();
//
// tabc
//
this.tabc.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tabc.Location = new System.Drawing.Point(0, 73);
this.tabc.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabc.Name = "tabc";
this.tabc.SelectedIndex = 0;
this.tabc.Size = new System.Drawing.Size(870, 690);
this.tabc.TabIndex = 0;
//
// btn_stop
//
this.btn_stop.Enabled = false;
this.btn_stop.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btn_stop.Location = new System.Drawing.Point(135, 7);
this.btn_stop.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(122, 58);
this.btn_stop.TabIndex = 5;
this.btn_stop.Text = "停止";
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// btn_run
//
this.btn_run.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btn_run.Location = new System.Drawing.Point(6, 7);
this.btn_run.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(122, 57);
this.btn_run.TabIndex = 6;
this.btn_run.Tag = "not";
this.btn_run.Text = "启动";
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// checkBox_disable
//
this.checkBox_disable.AutoSize = true;
this.checkBox_disable.Location = new System.Drawing.Point(290, 7);
this.checkBox_disable.Name = "checkBox_disable";
this.checkBox_disable.Size = new System.Drawing.Size(75, 21);
this.checkBox_disable.TabIndex = 7;
this.checkBox_disable.Text = "禁用料仓";
this.checkBox_disable.UseVisualStyleBackColor = true;
//
// listView
//
this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listView.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listView.HideSelection = false;
this.listView.Location = new System.Drawing.Point(429, 0);
this.listView.MultiSelect = false;
this.listView.Name = "listView";
this.listView.ShowGroups = false;
this.listView.Size = new System.Drawing.Size(438, 96);
this.listView.TabIndex = 8;
this.listView.UseCompatibleStateImageBehavior = false;
//
// UCStoreMachine
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.Controls.Add(this.listView);
this.Controls.Add(this.checkBox_disable);
this.Controls.Add(this.btn_stop);
this.Controls.Add(this.btn_run);
this.Controls.Add(this.tabc);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "UCStoreMachine";
this.Size = new System.Drawing.Size(870, 764);
this.Load += new System.EventHandler(this.UCStoreMachine_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TabControl tabc;
private System.Windows.Forms.Button btn_stop;
private System.Windows.Forms.Button btn_run;
private System.Windows.Forms.CheckBox checkBox_disable;
private System.Windows.Forms.ListView listView;
}
}