-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathIPConnect.Designer.cs
115 lines (109 loc) · 4.09 KB
/
IPConnect.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
namespace MobileControlGuru
{
partial class IPConnect
{
/// <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(IPConnect));
this.ip_input = new AntdUI.Input();
this.label1 = new AntdUI.Label();
this.panel1 = new AntdUI.Panel();
this.button1 = new AntdUI.Button();
this.connect_btn = new AntdUI.Button();
this.port_input = new AntdUI.InputNumber();
this.label2 = new AntdUI.Label();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// ip_input
//
resources.ApplyResources(this.ip_input, "ip_input");
this.ip_input.Name = "ip_input";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.button1);
this.panel1.Controls.Add(this.connect_btn);
this.panel1.Controls.Add(this.port_input);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.ip_input);
this.panel1.Name = "panel1";
this.panel1.Click += new System.EventHandler(this.panel1_Click);
//
// button1
//
resources.ApplyResources(this.button1, "button1");
this.button1.Name = "button1";
this.button1.Type = AntdUI.TTypeMini.Success;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// connect_btn
//
resources.ApplyResources(this.connect_btn, "connect_btn");
this.connect_btn.Name = "connect_btn";
this.connect_btn.Type = AntdUI.TTypeMini.Primary;
this.connect_btn.Click += new System.EventHandler(this.connect_btn_Click);
//
// port_input
//
resources.ApplyResources(this.port_input, "port_input");
this.port_input.Maximum = new decimal(new int[] {
999999,
0,
0,
0});
this.port_input.Name = "port_input";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// IPConnect
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.panel1);
this.Name = "IPConnect";
this.Load += new System.EventHandler(this.IPConnect_Load);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private AntdUI.Input ip_input;
private AntdUI.Label label1;
private AntdUI.Panel panel1;
private AntdUI.Label label2;
private AntdUI.Button connect_btn;
private AntdUI.InputNumber port_input;
private AntdUI.Button button1;
}
}