FrmCodeInPut.Designer.cs
5.4 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
namespace TSA_V
{
partial class FrmCodeInPut
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnCancel = new System.Windows.Forms.Button();
this.txtPCBCode = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.btnContinue = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnCancel.Location = new System.Drawing.Point(331, 161);
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(113, 53);
this.btnCancel.TabIndex = 1017;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// txtPCBCode
//
this.txtPCBCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtPCBCode.Location = new System.Drawing.Point(222, 71);
this.txtPCBCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.txtPCBCode.MaxLength = 100;
this.txtPCBCode.Name = "txtPCBCode";
this.txtPCBCode.Size = new System.Drawing.Size(306, 29);
this.txtPCBCode.TabIndex = 100;
//
// label1
//
this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(13, 74);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(201, 21);
this.label1.TabIndex = 17;
this.label1.Text = "PCB板条码:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btnContinue
//
this.btnContinue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnContinue.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnContinue.Location = new System.Drawing.Point(177, 161);
this.btnContinue.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.btnContinue.Name = "btnContinue";
this.btnContinue.Size = new System.Drawing.Size(113, 53);
this.btnContinue.TabIndex = 1016;
this.btnContinue.Text = "完成";
this.btnContinue.UseVisualStyleBackColor = true;
this.btnContinue.Click += new System.EventHandler(this.btnContinue_Click);
//
// FrmCodeInPut
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(614, 270);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.txtPCBCode);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnContinue);
this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "FrmCodeInPut";
this.Text = "请输入当前产品的条码信息";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmCodeInPut_FormClosing);
this.Load += new System.EventHandler(this.FrmCodeInPut_Load);
this.Shown += new System.EventHandler(this.FrmCodeInPut_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnContinue;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtPCBCode;
private System.Windows.Forms.Button btnCancel;
}
}