forked from Bediveren/RemoteControllerCsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetupForm.Designer.cs
More file actions
124 lines (117 loc) · 4.9 KB
/
SetupForm.Designer.cs
File metadata and controls
124 lines (117 loc) · 4.9 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
namespace RemoteControl
{
partial class SetupForm
{
/// <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()
{
this.btnConnect = new System.Windows.Forms.Button();
this.btnHost = new System.Windows.Forms.Button();
this.labelIPAdress = new System.Windows.Forms.Label();
this.tbIPAdress = new System.Windows.Forms.TextBox();
this.tbPort = new System.Windows.Forms.TextBox();
this.labelPort = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(9, 58);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(163, 24);
this.btnConnect.TabIndex = 0;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// btnHost
//
this.btnHost.Location = new System.Drawing.Point(13, 156);
this.btnHost.Name = "btnHost";
this.btnHost.Size = new System.Drawing.Size(162, 23);
this.btnHost.TabIndex = 1;
this.btnHost.Text = "Host";
this.btnHost.UseVisualStyleBackColor = true;
this.btnHost.Click += new System.EventHandler(this.btnHost_Click);
//
// labelIPAdress
//
this.labelIPAdress.AutoSize = true;
this.labelIPAdress.Location = new System.Drawing.Point(10, 9);
this.labelIPAdress.Name = "labelIPAdress";
this.labelIPAdress.Size = new System.Drawing.Size(52, 13);
this.labelIPAdress.TabIndex = 2;
this.labelIPAdress.Text = "IP Adress";
//
// tbIPAdress
//
this.tbIPAdress.Location = new System.Drawing.Point(72, 6);
this.tbIPAdress.Name = "tbIPAdress";
this.tbIPAdress.Size = new System.Drawing.Size(100, 20);
this.tbIPAdress.TabIndex = 3;
this.tbIPAdress.Text = "127.0.0.1";
this.tbIPAdress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// tbPort
//
this.tbPort.Location = new System.Drawing.Point(72, 32);
this.tbPort.Name = "tbPort";
this.tbPort.Size = new System.Drawing.Size(100, 20);
this.tbPort.TabIndex = 4;
this.tbPort.Text = "2000";
this.tbPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// labelPort
//
this.labelPort.AutoSize = true;
this.labelPort.Location = new System.Drawing.Point(12, 35);
this.labelPort.Name = "labelPort";
this.labelPort.Size = new System.Drawing.Size(26, 13);
this.labelPort.TabIndex = 5;
this.labelPort.Text = "Port";
//
// SetupForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(192, 191);
this.Controls.Add(this.labelPort);
this.Controls.Add(this.tbPort);
this.Controls.Add(this.tbIPAdress);
this.Controls.Add(this.labelIPAdress);
this.Controls.Add(this.btnHost);
this.Controls.Add(this.btnConnect);
this.Name = "SetupForm";
this.Text = "myRemote";
this.Load += new System.EventHandler(this.ConnectForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.Button btnHost;
private System.Windows.Forms.Label labelIPAdress;
private System.Windows.Forms.TextBox tbIPAdress;
private System.Windows.Forms.TextBox tbPort;
private System.Windows.Forms.Label labelPort;
}
}