-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddRow.Designer.cs
More file actions
127 lines (121 loc) · 4.92 KB
/
Copy pathAddRow.Designer.cs
File metadata and controls
127 lines (121 loc) · 4.92 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
namespace DataBaseLab1_2
{
partial class AddRow
{
/// <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.lblName = new System.Windows.Forms.Label();
this.lblSurname = new System.Windows.Forms.Label();
this.lblPatronymic = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.txtSurname = new System.Windows.Forms.TextBox();
this.txtPatronymic = new System.Windows.Forms.TextBox();
this.btnAdd = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(9, 16);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(44, 16);
this.lblName.TabIndex = 0;
this.lblName.Text = "Name";
//
// lblSurname
//
this.lblSurname.AutoSize = true;
this.lblSurname.Location = new System.Drawing.Point(10, 42);
this.lblSurname.Name = "lblSurname";
this.lblSurname.Size = new System.Drawing.Size(61, 16);
this.lblSurname.TabIndex = 1;
this.lblSurname.Text = "Surname";
//
// lblPatronymic
//
this.lblPatronymic.AutoSize = true;
this.lblPatronymic.Location = new System.Drawing.Point(10, 71);
this.lblPatronymic.Name = "lblPatronymic";
this.lblPatronymic.Size = new System.Drawing.Size(74, 16);
this.lblPatronymic.TabIndex = 2;
this.lblPatronymic.Text = "Patronymic";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(89, 13);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(320, 22);
this.txtName.TabIndex = 3;
//
// txtSurname
//
this.txtSurname.Location = new System.Drawing.Point(89, 42);
this.txtSurname.Name = "txtSurname";
this.txtSurname.Size = new System.Drawing.Size(320, 22);
this.txtSurname.TabIndex = 4;
//
// txtPatronymic
//
this.txtPatronymic.Location = new System.Drawing.Point(89, 71);
this.txtPatronymic.Name = "txtPatronymic";
this.txtPatronymic.Size = new System.Drawing.Size(320, 22);
this.txtPatronymic.TabIndex = 5;
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(12, 99);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(397, 64);
this.btnAdd.TabIndex = 6;
this.btnAdd.Text = "Добавить";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// AddRow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(421, 175);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.txtPatronymic);
this.Controls.Add(this.txtSurname);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lblPatronymic);
this.Controls.Add(this.lblSurname);
this.Controls.Add(this.lblName);
this.Name = "AddRow";
this.Text = "AddRow";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblSurname;
private System.Windows.Forms.Label lblPatronymic;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.TextBox txtSurname;
private System.Windows.Forms.TextBox txtPatronymic;
private System.Windows.Forms.Button btnAdd;
}
}