-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChooseDataAreaWindow.Designer.cs
More file actions
137 lines (132 loc) · 5.04 KB
/
Copy pathChooseDataAreaWindow.Designer.cs
File metadata and controls
137 lines (132 loc) · 5.04 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
129
130
131
132
133
134
135
136
137
namespace PrizeDrawTool
{
partial class ChooseDataAreaWindow
{
/// <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()
{
AreaFromTB = new TextBox();
AreaToTB = new TextBox();
AreaConfirmBtn = new Button();
AreaFromLabel = new Label();
label1 = new Label();
WorkSheetLabel = new Label();
WorkSheetListBox = new ComboBox();
SuspendLayout();
//
// AreaFromTB
//
AreaFromTB.Location = new Point(64, 83);
AreaFromTB.Name = "AreaFromTB";
AreaFromTB.Size = new Size(111, 27);
AreaFromTB.TabIndex = 0;
//
// AreaToTB
//
AreaToTB.Location = new Point(233, 83);
AreaToTB.Name = "AreaToTB";
AreaToTB.Size = new Size(110, 27);
AreaToTB.TabIndex = 1;
//
// AreaConfirmBtn
//
AreaConfirmBtn.Location = new Point(86, 142);
AreaConfirmBtn.Name = "AreaConfirmBtn";
AreaConfirmBtn.Size = new Size(192, 29);
AreaConfirmBtn.TabIndex = 2;
AreaConfirmBtn.Text = "确定(Enter)";
AreaConfirmBtn.UseVisualStyleBackColor = true;
AreaConfirmBtn.Click += AreaConfirmBtn_Click;
//
// AreaFromLabel
//
AreaFromLabel.AutoSize = true;
AreaFromLabel.Font = new Font("Microsoft YaHei UI", 10.8F, FontStyle.Regular, GraphicsUnit.Point, 134);
AreaFromLabel.Location = new Point(12, 86);
AreaFromLabel.Name = "AreaFromLabel";
AreaFromLabel.Size = new Size(46, 24);
AreaFromLabel.TabIndex = 3;
AreaFromLabel.Text = "从:";
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Microsoft YaHei UI", 10.8F, FontStyle.Regular, GraphicsUnit.Point, 134);
label1.Location = new Point(181, 86);
label1.Name = "label1";
label1.Size = new Size(46, 24);
label1.TabIndex = 4;
label1.Text = "到:";
//
// WorkSheetLabel
//
WorkSheetLabel.AutoSize = true;
WorkSheetLabel.Font = new Font("Microsoft YaHei UI", 10.8F, FontStyle.Regular, GraphicsUnit.Point, 134);
WorkSheetLabel.Location = new Point(12, 40);
WorkSheetLabel.Name = "WorkSheetLabel";
WorkSheetLabel.Size = new Size(82, 24);
WorkSheetLabel.TabIndex = 5;
WorkSheetLabel.Text = "工作簿:";
//
// WorkSheetListBox
//
WorkSheetListBox.DropDownStyle = ComboBoxStyle.DropDownList;
WorkSheetListBox.FormattingEnabled = true;
WorkSheetListBox.Location = new Point(86, 36);
WorkSheetListBox.Name = "WorkSheetListBox";
WorkSheetListBox.Size = new Size(109, 28);
WorkSheetListBox.TabIndex = 7;
WorkSheetListBox.SelectedIndexChanged += WorkSheetListBox_SelectedIndexChanged;
//
// ChooseDataAreaWindow
//
AcceptButton = AreaConfirmBtn;
AutoScaleDimensions = new SizeF(9F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(364, 194);
ControlBox = false;
Controls.Add(WorkSheetListBox);
Controls.Add(WorkSheetLabel);
Controls.Add(label1);
Controls.Add(AreaFromLabel);
Controls.Add(AreaConfirmBtn);
Controls.Add(AreaToTB);
Controls.Add(AreaFromTB);
FormBorderStyle = FormBorderStyle.FixedDialog;
MaximizeBox = false;
MinimizeBox = false;
Name = "ChooseDataAreaWindow";
Text = "请输入有效数据范围(如工作簿1从A1到B5)";
ResumeLayout(false);
PerformLayout();
}
#endregion
public TextBox AreaFromTB;
public TextBox AreaToTB;
private Button AreaConfirmBtn;
private Label AreaFromLabel;
private Label label1;
private Label WorkSheetLabel;
public ComboBox WorkSheetListBox;
}
}