Form1.Designer.cs
3.84 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
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();
cb_project = new ComboBox();
tabPage2 = new TabPage();
cb_factory = 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(cb_factory);
tabPage1.Controls.Add(cb_project);
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;
//
// cb_project
//
cb_project.FormattingEnabled = true;
cb_project.Location = new Point(262, 43);
cb_project.Name = "cb_project";
cb_project.Size = new Size(182, 32);
cb_project.TabIndex = 1;
cb_project.SelectedIndexChanged += cb_project_SelectedIndexChanged;
//
// 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;
//
// cb_factory
//
cb_factory.FormattingEnabled = true;
cb_factory.Location = new Point(262, 125);
cb_factory.Name = "cb_factory";
cb_factory.Size = new Size(182, 32);
cb_factory.TabIndex = 2;
cb_factory.SelectedIndexChanged += cb_factory_SelectedIndexChanged;
//
// 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 cb_project;
private ComboBox cb_factory;
}
}