UC_U1.Designer.cs
5.6 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
namespace AutoScanAndLabel
{
partial class UC_U1
{
/// <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.label_dir = new System.Windows.Forms.Label();
this.btn_selectdir = new System.Windows.Forms.Button();
this.txt_reelphotodir = new System.Windows.Forms.TextBox();
this.cb_exportreephoto = new System.Windows.Forms.CheckBox();
this.gb = new System.Windows.Forms.GroupBox();
this.gb.SuspendLayout();
this.SuspendLayout();
//
// label_dir
//
this.label_dir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label_dir.AutoSize = true;
this.label_dir.Location = new System.Drawing.Point(4, 57);
this.label_dir.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label_dir.Name = "label_dir";
this.label_dir.Size = new System.Drawing.Size(125, 18);
this.label_dir.TabIndex = 16;
this.label_dir.Text = "图像保存目录:";
//
// btn_selectdir
//
this.btn_selectdir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_selectdir.Location = new System.Drawing.Point(541, 80);
this.btn_selectdir.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btn_selectdir.Name = "btn_selectdir";
this.btn_selectdir.Size = new System.Drawing.Size(98, 28);
this.btn_selectdir.TabIndex = 15;
this.btn_selectdir.Text = "浏览";
this.btn_selectdir.UseVisualStyleBackColor = true;
this.btn_selectdir.Click += new System.EventHandler(this.btn_selectdir_Click);
//
// txt_reelphotodir
//
this.txt_reelphotodir.Location = new System.Drawing.Point(8, 80);
this.txt_reelphotodir.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.txt_reelphotodir.Name = "txt_reelphotodir";
this.txt_reelphotodir.ReadOnly = true;
this.txt_reelphotodir.Size = new System.Drawing.Size(517, 28);
this.txt_reelphotodir.TabIndex = 14;
//
// cb_exportreephoto
//
this.cb_exportreephoto.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cb_exportreephoto.AutoSize = true;
this.cb_exportreephoto.Location = new System.Drawing.Point(9, 30);
this.cb_exportreephoto.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.cb_exportreephoto.Name = "cb_exportreephoto";
this.cb_exportreephoto.Size = new System.Drawing.Size(394, 22);
this.cb_exportreephoto.TabIndex = 13;
this.cb_exportreephoto.Text = "自动拍摄并保存料盘图像. 勾选后仅本次有效";
this.cb_exportreephoto.UseVisualStyleBackColor = true;
//
// gb
//
this.gb.Controls.Add(this.cb_exportreephoto);
this.gb.Controls.Add(this.btn_selectdir);
this.gb.Controls.Add(this.label_dir);
this.gb.Controls.Add(this.txt_reelphotodir);
this.gb.Dock = System.Windows.Forms.DockStyle.Fill;
this.gb.Location = new System.Drawing.Point(0, 0);
this.gb.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.gb.Name = "gb";
this.gb.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.gb.Size = new System.Drawing.Size(647, 222);
this.gb.TabIndex = 17;
this.gb.TabStop = false;
this.gb.Text = "料盘图像导出";
//
// UC_U1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.gb);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "UC_U1";
this.Size = new System.Drawing.Size(647, 222);
this.Load += new System.EventHandler(this.UC_U1_Load);
this.gb.ResumeLayout(false);
this.gb.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label_dir;
private System.Windows.Forms.Button btn_selectdir;
private System.Windows.Forms.TextBox txt_reelphotodir;
private System.Windows.Forms.CheckBox cb_exportreephoto;
private System.Windows.Forms.GroupBox gb;
}
}