AgvControl.Designer.cs
5.9 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
namespace AutoScanAndLabel.UC
{
partial class AgvControl
{
/// <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.groupBox_right = new System.Windows.Forms.GroupBox();
this.button_rightleavefull = new System.Windows.Forms.Button();
this.button_rightneedempty = new System.Windows.Forms.Button();
this.groupBox_left = new System.Windows.Forms.GroupBox();
this.button_leftneedempty = new System.Windows.Forms.Button();
this.button_Leftleavefull = new System.Windows.Forms.Button();
this.groupBox_right.SuspendLayout();
this.groupBox_left.SuspendLayout();
this.SuspendLayout();
//
// groupBox_right
//
this.groupBox_right.Controls.Add(this.button_rightleavefull);
this.groupBox_right.Controls.Add(this.button_rightneedempty);
this.groupBox_right.Location = new System.Drawing.Point(299, 20);
this.groupBox_right.Name = "groupBox_right";
this.groupBox_right.Size = new System.Drawing.Size(233, 226);
this.groupBox_right.TabIndex = 0;
this.groupBox_right.TabStop = false;
this.groupBox_right.Text = "右侧";
//
// button_rightleavefull
//
this.button_rightleavefull.Location = new System.Drawing.Point(23, 126);
this.button_rightleavefull.Name = "button_rightleavefull";
this.button_rightleavefull.Size = new System.Drawing.Size(175, 61);
this.button_rightleavefull.TabIndex = 0;
this.button_rightleavefull.Text = "请求取空料串";
this.button_rightleavefull.UseVisualStyleBackColor = true;
this.button_rightleavefull.Click += new System.EventHandler(this.button_rightleavefull_Click);
//
// button_rightneedempty
//
this.button_rightneedempty.Location = new System.Drawing.Point(23, 40);
this.button_rightneedempty.Name = "button_rightneedempty";
this.button_rightneedempty.Size = new System.Drawing.Size(175, 61);
this.button_rightneedempty.TabIndex = 0;
this.button_rightneedempty.Text = "请求送满料串";
this.button_rightneedempty.UseVisualStyleBackColor = true;
this.button_rightneedempty.Click += new System.EventHandler(this.button_rightneedempty_Click);
//
// groupBox_left
//
this.groupBox_left.Controls.Add(this.button_leftneedempty);
this.groupBox_left.Controls.Add(this.button_Leftleavefull);
this.groupBox_left.Location = new System.Drawing.Point(22, 20);
this.groupBox_left.Name = "groupBox_left";
this.groupBox_left.Size = new System.Drawing.Size(233, 226);
this.groupBox_left.TabIndex = 0;
this.groupBox_left.TabStop = false;
this.groupBox_left.Text = "左侧";
//
// button_leftneedempty
//
this.button_leftneedempty.Location = new System.Drawing.Point(30, 126);
this.button_leftneedempty.Name = "button_leftneedempty";
this.button_leftneedempty.Size = new System.Drawing.Size(175, 61);
this.button_leftneedempty.TabIndex = 0;
this.button_leftneedempty.Text = "请求送空料串";
this.button_leftneedempty.UseVisualStyleBackColor = true;
this.button_leftneedempty.Click += new System.EventHandler(this.button_leftneedempty_Click);
//
// button_Leftleavefull
//
this.button_Leftleavefull.Location = new System.Drawing.Point(30, 40);
this.button_Leftleavefull.Name = "button_Leftleavefull";
this.button_Leftleavefull.Size = new System.Drawing.Size(175, 61);
this.button_Leftleavefull.TabIndex = 0;
this.button_Leftleavefull.Text = "请求取满料串";
this.button_Leftleavefull.UseVisualStyleBackColor = true;
this.button_Leftleavefull.Click += new System.EventHandler(this.button_Leftleavefull_Click);
//
// AgvControl
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.Controls.Add(this.groupBox_left);
this.Controls.Add(this.groupBox_right);
this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Name = "AgvControl";
this.Size = new System.Drawing.Size(973, 521);
this.groupBox_right.ResumeLayout(false);
this.groupBox_left.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox_right;
private System.Windows.Forms.GroupBox groupBox_left;
private System.Windows.Forms.Button button_rightleavefull;
private System.Windows.Forms.Button button_rightneedempty;
private System.Windows.Forms.Button button_leftneedempty;
private System.Windows.Forms.Button button_Leftleavefull;
}
}