-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
136 lines (129 loc) · 5.6 KB
/
Form1.Designer.cs
File metadata and controls
136 lines (129 loc) · 5.6 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
namespace Yakovenko_072303_5
{
partial class Form1
{
/// <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()
{
this.SelectAll = new System.Windows.Forms.Button();
this.Select1 = new System.Windows.Forms.Button();
this.Insert = new System.Windows.Forms.Button();
this.Update = new System.Windows.Forms.Button();
this.Delete = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// SelectAll
//
this.SelectAll.Location = new System.Drawing.Point(567, 226);
this.SelectAll.Name = "SelectAll";
this.SelectAll.Size = new System.Drawing.Size(75, 23);
this.SelectAll.TabIndex = 0;
this.SelectAll.Text = "SelectAll";
this.SelectAll.UseVisualStyleBackColor = true;
this.SelectAll.Click += new System.EventHandler(this.SelectAll_Click);
//
// Select1
//
this.Select1.Location = new System.Drawing.Point(567, 178);
this.Select1.Name = "Select1";
this.Select1.Size = new System.Drawing.Size(75, 23);
this.Select1.TabIndex = 1;
this.Select1.Text = "Select1";
this.Select1.UseVisualStyleBackColor = true;
this.Select1.Click += new System.EventHandler(this.Select1_Click);
//
// Insert
//
this.Insert.Location = new System.Drawing.Point(567, 276);
this.Insert.Name = "Insert";
this.Insert.Size = new System.Drawing.Size(75, 23);
this.Insert.TabIndex = 2;
this.Insert.Text = "Insert";
this.Insert.UseVisualStyleBackColor = true;
this.Insert.Click += new System.EventHandler(this.Insert_Click);
//
// Update
//
this.Update.Location = new System.Drawing.Point(567, 337);
this.Update.Name = "Update";
this.Update.Size = new System.Drawing.Size(75, 23);
this.Update.TabIndex = 3;
this.Update.Text = "Update";
this.Update.UseVisualStyleBackColor = true;
this.Update.Click += new System.EventHandler(this.Update_Click);
//
// Delete
//
this.Delete.Location = new System.Drawing.Point(567, 399);
this.Delete.Name = "Delete";
this.Delete.Size = new System.Drawing.Size(75, 23);
this.Delete.TabIndex = 4;
this.Delete.Text = "Delete";
this.Delete.UseVisualStyleBackColor = true;
this.Delete.Click += new System.EventHandler(this.Delete_Click);
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 16;
this.listBox1.Location = new System.Drawing.Point(24, 178);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(515, 244);
this.listBox1.TabIndex = 5;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(24, 117);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(515, 22);
this.textBox1.TabIndex = 6;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.Delete);
this.Controls.Add(this.Update);
this.Controls.Add(this.Insert);
this.Controls.Add(this.Select1);
this.Controls.Add(this.SelectAll);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button SelectAll;
private System.Windows.Forms.Button Select1;
private System.Windows.Forms.Button Insert;
private System.Windows.Forms.Button Update;
private System.Windows.Forms.Button Delete;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.TextBox textBox1;
}
}