-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientForm.Designer.cs
More file actions
155 lines (148 loc) · 6.87 KB
/
ClientForm.Designer.cs
File metadata and controls
155 lines (148 loc) · 6.87 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
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
using System.Windows.Forms;
namespace Lab1
{
partial class ClientForm
{
/// <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 Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientForm));
this.nameTextBox = new System.Windows.Forms.TextBox();
this.emailTextBox = new System.Windows.Forms.TextBox();
this.phoneTextBox = new System.Windows.Forms.TextBox();
this.addressTextBox = new System.Windows.Forms.TextBox();
this.addClientButton = new System.Windows.Forms.Button();
this.removeClientButton = new System.Windows.Forms.Button();
this.searchTextBox = new System.Windows.Forms.TextBox();
this.searchButton = new System.Windows.Forms.Button();
this.clientsListBox = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// nameTextBox
//
this.nameTextBox.Location = new System.Drawing.Point(10, 10);
this.nameTextBox.Name = "nameTextBox";
this.nameTextBox.Size = new System.Drawing.Size(150, 20);
this.nameTextBox.TabIndex = 0;
this.nameTextBox.Text = "Имя";
//
// emailTextBox
//
this.emailTextBox.Location = new System.Drawing.Point(170, 10);
this.emailTextBox.Name = "emailTextBox";
this.emailTextBox.Size = new System.Drawing.Size(150, 20);
this.emailTextBox.TabIndex = 1;
this.emailTextBox.Text = "Email";
//
// phoneTextBox
//
this.phoneTextBox.Location = new System.Drawing.Point(330, 10);
this.phoneTextBox.Name = "phoneTextBox";
this.phoneTextBox.Size = new System.Drawing.Size(100, 20);
this.phoneTextBox.TabIndex = 2;
this.phoneTextBox.Text = "Телефон";
//
// addressTextBox
//
this.addressTextBox.Location = new System.Drawing.Point(10, 40);
this.addressTextBox.Multiline = true;
this.addressTextBox.Name = "addressTextBox";
this.addressTextBox.Size = new System.Drawing.Size(450, 20);
this.addressTextBox.TabIndex = 3;
this.addressTextBox.Text = "Адрес";
//
// addClientButton
//
this.addClientButton.Location = new System.Drawing.Point(10, 80);
this.addClientButton.Name = "addClientButton";
this.addClientButton.Size = new System.Drawing.Size(100, 23);
this.addClientButton.TabIndex = 4;
this.addClientButton.Text = "Добавить";
this.addClientButton.Click += new System.EventHandler(this.AddClientButton_Click);
//
// removeClientButton
//
this.removeClientButton.Location = new System.Drawing.Point(120, 80);
this.removeClientButton.Name = "removeClientButton";
this.removeClientButton.Size = new System.Drawing.Size(100, 23);
this.removeClientButton.TabIndex = 5;
this.removeClientButton.Text = "Удалить";
this.removeClientButton.Click += new System.EventHandler(this.RemoveClientButton_Click);
//
// searchTextBox
//
this.searchTextBox.Location = new System.Drawing.Point(10, 110);
this.searchTextBox.Name = "searchTextBox";
this.searchTextBox.Size = new System.Drawing.Size(200, 20);
this.searchTextBox.TabIndex = 6;
this.searchTextBox.Text = "Поиск";
//
// searchButton
//
this.searchButton.Location = new System.Drawing.Point(220, 110);
this.searchButton.Name = "searchButton";
this.searchButton.Size = new System.Drawing.Size(80, 23);
this.searchButton.TabIndex = 7;
this.searchButton.Text = "Искать";
this.searchButton.Click += new System.EventHandler(this.SearchButton_Click);
//
// clientsListBox
//
this.clientsListBox.Location = new System.Drawing.Point(10, 140);
this.clientsListBox.Name = "clientsListBox";
this.clientsListBox.Size = new System.Drawing.Size(450, 199);
this.clientsListBox.TabIndex = 8;
//
// ClientForm
//
this.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.ClientSize = new System.Drawing.Size(484, 361);
this.Controls.Add(this.nameTextBox);
this.Controls.Add(this.emailTextBox);
this.Controls.Add(this.phoneTextBox);
this.Controls.Add(this.addressTextBox);
this.Controls.Add(this.addClientButton);
this.Controls.Add(this.removeClientButton);
this.Controls.Add(this.searchTextBox);
this.Controls.Add(this.searchButton);
this.Controls.Add(this.clientsListBox);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ClientForm";
this.Tag = "111";
this.Text = "Управление клиентами";
this.Load += new System.EventHandler(this.ClientForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox nameTextBox;
private TextBox emailTextBox;
private TextBox phoneTextBox;
private TextBox addressTextBox;
private Button addClientButton;
private Button removeClientButton;
private TextBox searchTextBox;
private Button searchButton;
private ListBox clientsListBox;
}
}