-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMain.Designer.cs
176 lines (169 loc) · 7.8 KB
/
Main.Designer.cs
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
namespace VirtualAP
{
partial class frmMain
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.lSSID = new System.Windows.Forms.Label();
this.txtSSID = new System.Windows.Forms.TextBox();
this.lPassword = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.btnStartAP = new System.Windows.Forms.Button();
this.btnStopAP = new System.Windows.Forms.Button();
this.txtOutput = new System.Windows.Forms.TextBox();
this.lInfo = new System.Windows.Forms.Label();
this.lVersion = new System.Windows.Forms.Label();
this.btnInitialAndStartAP = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lSSID
//
this.lSSID.AutoSize = true;
this.lSSID.Location = new System.Drawing.Point(51, 27);
this.lSSID.Name = "lSSID";
this.lSSID.Size = new System.Drawing.Size(144, 13);
this.lSSID.TabIndex = 0;
this.lSSID.Text = "SSID (Wifi name)/热点名称:";
//
// txtSSID
//
this.txtSSID.Location = new System.Drawing.Point(201, 24);
this.txtSSID.Name = "txtSSID";
this.txtSSID.Size = new System.Drawing.Size(131, 20);
this.txtSSID.TabIndex = 1;
this.txtSSID.Text = "PC-WIFI";
//
// lPassword
//
this.lPassword.AutoSize = true;
this.lPassword.Location = new System.Drawing.Point(51, 58);
this.lPassword.Name = "lPassword";
this.lPassword.Size = new System.Drawing.Size(85, 13);
this.lPassword.TabIndex = 2;
this.lPassword.Text = "Password/密码:";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(201, 55);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(131, 20);
this.txtPassword.TabIndex = 3;
this.txtPassword.Text = "password";
//
// btnStartAP
//
this.btnStartAP.Location = new System.Drawing.Point(134, 93);
this.btnStartAP.Name = "btnStartAP";
this.btnStartAP.Size = new System.Drawing.Size(119, 50);
this.btnStartAP.TabIndex = 4;
this.btnStartAP.Text = "Start AP/启动热点";
this.btnStartAP.UseVisualStyleBackColor = true;
this.btnStartAP.Click += new System.EventHandler(this.btnStartAP_Click);
//
// btnStopAP
//
this.btnStopAP.Location = new System.Drawing.Point(259, 93);
this.btnStopAP.Name = "btnStopAP";
this.btnStopAP.Size = new System.Drawing.Size(111, 50);
this.btnStopAP.TabIndex = 5;
this.btnStopAP.Text = "Stop AP/停止热点";
this.btnStopAP.UseVisualStyleBackColor = true;
this.btnStopAP.Click += new System.EventHandler(this.btnStopAP_Click);
//
// txtOutput
//
this.txtOutput.Location = new System.Drawing.Point(12, 149);
this.txtOutput.Multiline = true;
this.txtOutput.Name = "txtOutput";
this.txtOutput.ReadOnly = true;
this.txtOutput.Size = new System.Drawing.Size(358, 167);
this.txtOutput.TabIndex = 6;
//
// lInfo
//
this.lInfo.AutoSize = true;
this.lInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lInfo.Location = new System.Drawing.Point(12, 319);
this.lInfo.Name = "lInfo";
this.lInfo.Size = new System.Drawing.Size(67, 13);
this.lInfo.TabIndex = 7;
this.lInfo.Text = "By JIN Weijie";
//
// lVersion
//
this.lVersion.AutoSize = true;
this.lVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lVersion.Location = new System.Drawing.Point(80, 319);
this.lVersion.Name = "lVersion";
this.lVersion.Size = new System.Drawing.Size(0, 13);
this.lVersion.TabIndex = 8;
//
// btnInitialAndStartAP
//
this.btnInitialAndStartAP.Location = new System.Drawing.Point(12, 93);
this.btnInitialAndStartAP.Name = "btnInitialAndStartAP";
this.btnInitialAndStartAP.Size = new System.Drawing.Size(116, 50);
this.btnInitialAndStartAP.TabIndex = 9;
this.btnInitialAndStartAP.Text = "Initial and Start AP / 初始化并启动热点";
this.btnInitialAndStartAP.UseVisualStyleBackColor = true;
this.btnInitialAndStartAP.Click += new System.EventHandler(this.btnInitialAndStartAP_Click);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(382, 338);
this.Controls.Add(this.btnInitialAndStartAP);
this.Controls.Add(this.lVersion);
this.Controls.Add(this.lInfo);
this.Controls.Add(this.txtOutput);
this.Controls.Add(this.btnStopAP);
this.Controls.Add(this.btnStartAP);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.lPassword);
this.Controls.Add(this.txtSSID);
this.Controls.Add(this.lSSID);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmMain";
this.Text = "Virtual Access Point/虚拟热点管理";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
this.Load += new System.EventHandler(this.frmMain_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lSSID;
private System.Windows.Forms.TextBox txtSSID;
private System.Windows.Forms.Label lPassword;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Button btnStartAP;
private System.Windows.Forms.Button btnStopAP;
private System.Windows.Forms.TextBox txtOutput;
private System.Windows.Forms.Label lInfo;
private System.Windows.Forms.Label lVersion;
private System.Windows.Forms.Button btnInitialAndStartAP;
}
}