-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPanelUser.Designer.cs
More file actions
98 lines (93 loc) · 3.62 KB
/
PanelUser.Designer.cs
File metadata and controls
98 lines (93 loc) · 3.62 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
namespace M9Studio.ShadowTalk.Client
{
partial class PanelUser
{
/// <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()
{
flowLayoutPanel1 = new FlowLayoutPanel();
labelName = new Label();
labelServer = new Label();
labelCount = new Label();
flowLayoutPanel1.SuspendLayout();
SuspendLayout();
//
// flowLayoutPanel1
//
flowLayoutPanel1.BackColor = SystemColors.ControlLight;
flowLayoutPanel1.Controls.Add(labelName);
flowLayoutPanel1.Controls.Add(labelServer);
flowLayoutPanel1.Controls.Add(labelCount);
flowLayoutPanel1.Cursor = Cursors.Hand;
flowLayoutPanel1.Dock = DockStyle.Fill;
flowLayoutPanel1.Location = new Point(0, 0);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Size = new Size(10000, 30);
flowLayoutPanel1.TabIndex = 0;
flowLayoutPanel1.Click += clik;
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(3, 0);
labelName.Name = "labelName";
labelName.Size = new Size(65, 15);
labelName.TabIndex = 0;
labelName.Text = "label name";
//
// labelServer
//
labelServer.AutoSize = true;
labelServer.Location = new Point(74, 0);
labelServer.Name = "labelServer";
labelServer.Size = new Size(69, 15);
labelServer.TabIndex = 1;
labelServer.Text = "label server";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(149, 0);
labelCount.Name = "labelCount";
labelCount.Size = new Size(66, 15);
labelCount.TabIndex = 2;
labelCount.Text = "label count";
//
// PanelUser
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(flowLayoutPanel1);
Name = "PanelUser";
Size = new Size(10000, 30);
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
ResumeLayout(false);
}
#endregion
private FlowLayoutPanel flowLayoutPanel1;
public Label labelName;
public Label labelServer;
public Label labelCount;
}
}