-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPanelSetting.Designer.cs
More file actions
128 lines (123 loc) · 4.68 KB
/
PanelSetting.Designer.cs
File metadata and controls
128 lines (123 loc) · 4.68 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
124
125
126
127
128
namespace M9Studio.ShadowTalk.Client
{
partial class PanelSetting
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором компонентов
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
listView1 = new ListView();
button1 = new Button();
textBoxPort = new TextBox();
textBoxIP = new TextBox();
textBoxName = new TextBox();
button2 = new Button();
SuspendLayout();
//
// listView1
//
listView1.Location = new Point(4, 5);
listView1.Margin = new Padding(4, 5, 4, 5);
listView1.Name = "listView1";
listView1.Size = new Size(430, 484);
listView1.TabIndex = 8;
listView1.UseCompatibleStateImageBehavior = false;
listView1.KeyDown += listView1_KeyDown;
//
// button1
//
button1.Location = new Point(327, 545);
button1.Margin = new Padding(4, 5, 4, 5);
button1.Name = "button1";
button1.Size = new Size(107, 35);
button1.TabIndex = 7;
button1.Text = "Добавить";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// textBoxPort
//
textBoxPort.Location = new Point(216, 545);
textBoxPort.Margin = new Padding(4, 5, 4, 5);
textBoxPort.Name = "textBoxPort";
textBoxPort.PlaceholderText = "Port";
textBoxPort.Size = new Size(103, 23);
textBoxPort.TabIndex = 6;
textBoxPort.Text = "60606";
//
// textBoxIP
//
textBoxIP.Location = new Point(4, 545);
textBoxIP.Margin = new Padding(4, 5, 4, 5);
textBoxIP.Name = "textBoxIP";
textBoxIP.PlaceholderText = "IP/Domain";
textBoxIP.Size = new Size(204, 23);
textBoxIP.TabIndex = 5;
textBoxIP.Text = "127.0.0.1";
//
// textBoxName
//
textBoxName.Location = new Point(4, 499);
textBoxName.Margin = new Padding(4, 5, 4, 5);
textBoxName.Name = "textBoxName";
textBoxName.PlaceholderText = "Название сервера";
textBoxName.Size = new Size(430, 23);
textBoxName.TabIndex = 9;
textBoxName.Text = "Main";
//
// button2
//
button2.Location = new Point(327, 590);
button2.Margin = new Padding(4, 5, 4, 5);
button2.Name = "button2";
button2.Size = new Size(107, 35);
button2.TabIndex = 10;
button2.Text = "Порт";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// PanelSetting
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
AutoSize = true;
BackColor = Color.White;
Controls.Add(button2);
Controls.Add(textBoxName);
Controls.Add(listView1);
Controls.Add(button1);
Controls.Add(textBoxPort);
Controls.Add(textBoxIP);
Name = "PanelSetting";
Size = new Size(438, 630);
ResumeLayout(false);
PerformLayout();
}
#endregion
private ListView listView1;
private Button button1;
private TextBox textBoxPort;
private TextBox textBoxIP;
private TextBox textBoxName;
private Button button2;
}
}