Frm_LabelEdit.Designer.cs
4.3 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
namespace TinLabel
{
partial class Frm_LabelEdit
{
/// <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()
{
groupBox1 = new GroupBox();
label2 = new Label();
btn_printertest = new Button();
btn_labeledit = new Button();
cb_labelselect = new ComboBox();
groupBox1.SuspendLayout();
SuspendLayout();
//
// groupBox1
//
groupBox1.Controls.Add(label2);
groupBox1.Controls.Add(btn_printertest);
groupBox1.Controls.Add(btn_labeledit);
groupBox1.Controls.Add(cb_labelselect);
groupBox1.Location = new Point(13, 14);
groupBox1.Margin = new Padding(4, 5, 4, 5);
groupBox1.Name = "groupBox1";
groupBox1.Padding = new Padding(4, 5, 4, 5);
groupBox1.Size = new Size(453, 200);
groupBox1.TabIndex = 13;
groupBox1.TabStop = false;
groupBox1.Text = "打印设置";
//
// label2
//
label2.Location = new Point(7, 36);
label2.Margin = new Padding(4, 0, 4, 0);
label2.Name = "label2";
label2.Size = new Size(141, 32);
label2.TabIndex = 2;
label2.Text = "标签名";
label2.TextAlign = ContentAlignment.MiddleRight;
//
// btn_printertest
//
btn_printertest.Location = new Point(15, 122);
btn_printertest.Margin = new Padding(4, 5, 4, 5);
btn_printertest.Name = "btn_printertest";
btn_printertest.Size = new Size(143, 49);
btn_printertest.TabIndex = 1;
btn_printertest.Text = "打印测试";
btn_printertest.UseVisualStyleBackColor = true;
btn_printertest.Click += btn_printertest_Click;
//
// btn_labeledit
//
btn_labeledit.Location = new Point(277, 122);
btn_labeledit.Margin = new Padding(4, 5, 4, 5);
btn_labeledit.Name = "btn_labeledit";
btn_labeledit.Size = new Size(143, 49);
btn_labeledit.TabIndex = 1;
btn_labeledit.Text = "标签编辑";
btn_labeledit.UseVisualStyleBackColor = true;
btn_labeledit.Click += btn_labeledit_Click;
//
// cb_labelselect
//
cb_labelselect.FormattingEnabled = true;
cb_labelselect.Location = new Point(156, 38);
cb_labelselect.Margin = new Padding(4, 5, 4, 5);
cb_labelselect.Name = "cb_labelselect";
cb_labelselect.Size = new Size(263, 27);
cb_labelselect.TabIndex = 0;
//
// Frm_LabelEdit
//
AutoScaleDimensions = new SizeF(8F, 19F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(488, 235);
Controls.Add(groupBox1);
FormBorderStyle = FormBorderStyle.FixedDialog;
Margin = new Padding(4, 5, 4, 5);
MaximizeBox = false;
MinimizeBox = false;
Name = "Frm_LabelEdit";
StartPosition = FormStartPosition.CenterParent;
Text = "设置";
Load += Frm_LabelEdit_Load;
groupBox1.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private GroupBox groupBox1;
private Label label2;
private Button btn_printertest;
private Button btn_labeledit;
private ComboBox cb_labelselect;
}
}