Form1.Designer.cs
3.27 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
namespace HH.Data.Excel
{
partial class Form1
{
/// <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()
{
tabControl1 = new TabControl();
tabPage1 = new TabPage();
tabPage2 = new TabPage();
comboBox1 = new ComboBox();
tabControl1.SuspendLayout();
tabPage1.SuspendLayout();
SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage1);
tabControl1.Controls.Add(tabPage2);
tabControl1.Dock = DockStyle.Fill;
tabControl1.Location = new Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new Size(892, 620);
tabControl1.TabIndex = 0;
//
// tabPage1
//
tabPage1.Controls.Add(comboBox1);
tabPage1.Location = new Point(4, 33);
tabPage1.Name = "tabPage1";
tabPage1.Padding = new Padding(3);
tabPage1.Size = new Size(884, 583);
tabPage1.TabIndex = 0;
tabPage1.Text = "输送线设备";
tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
tabPage2.Location = new Point(4, 33);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new Padding(3);
tabPage2.Size = new Size(884, 583);
tabPage2.TabIndex = 1;
tabPage2.Text = "设备(堆垛机-AGV-焊接)";
tabPage2.UseVisualStyleBackColor = true;
//
// comboBox1
//
comboBox1.FormattingEnabled = true;
comboBox1.Location = new Point(39, 46);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(182, 32);
comboBox1.TabIndex = 1;
//
// Form1
//
AutoScaleDimensions = new SizeF(11F, 24F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(892, 620);
Controls.Add(tabControl1);
Name = "Form1";
Text = "IOT-数据采集地址协议解析";
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TabControl tabControl1;
private TabPage tabPage1;
private TabPage tabPage2;
private ComboBox comboBox1;
}
}