Фикс названий элементов на форме редактирования болезни

This commit is contained in:
Никита Потапов 2024-04-30 10:31:26 +04:00
parent 78519cdc69
commit 3681c58f16

View File

@ -31,9 +31,9 @@
buttonCancel = new Button();
buttonApply = new Button();
labelName = new Label();
label2 = new Label();
textBox1 = new TextBox();
textBox2 = new TextBox();
labelComment = new Label();
textBoxName = new TextBox();
textBoxComment = new TextBox();
SuspendLayout();
//
// buttonCancel
@ -65,40 +65,40 @@
labelName.TabIndex = 4;
labelName.Text = "Название";
//
// label2
// labelComment
//
label2.AutoSize = true;
label2.Location = new Point(12, 46);
label2.Name = "label2";
label2.Size = new Size(107, 20);
label2.TabIndex = 5;
label2.Text = "Комментарий";
labelComment.AutoSize = true;
labelComment.Location = new Point(12, 46);
labelComment.Name = "labelComment";
labelComment.Size = new Size(107, 20);
labelComment.TabIndex = 5;
labelComment.Text = "Комментарий";
//
// textBox1
// textBoxName
//
textBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBox1.Location = new Point(95, 6);
textBox1.Name = "textBox1";
textBox1.Size = new Size(355, 27);
textBox1.TabIndex = 6;
textBoxName.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBoxName.Location = new Point(95, 6);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(355, 27);
textBoxName.TabIndex = 6;
//
// textBox2
// textBoxComment
//
textBox2.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
textBox2.Location = new Point(12, 69);
textBox2.Multiline = true;
textBox2.Name = "textBox2";
textBox2.Size = new Size(438, 107);
textBox2.TabIndex = 7;
textBoxComment.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
textBoxComment.Location = new Point(12, 69);
textBoxComment.Multiline = true;
textBoxComment.Name = "textBoxComment";
textBoxComment.Size = new Size(438, 107);
textBoxComment.TabIndex = 7;
//
// FormDiagnose
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(462, 223);
Controls.Add(textBox2);
Controls.Add(textBox1);
Controls.Add(label2);
Controls.Add(textBoxComment);
Controls.Add(textBoxName);
Controls.Add(labelComment);
Controls.Add(labelName);
Controls.Add(buttonCancel);
Controls.Add(buttonApply);
@ -114,8 +114,8 @@
private Button buttonCancel;
private Button buttonApply;
private Label labelName;
private Label label2;
private TextBox textBox1;
private TextBox textBox2;
private Label labelComment;
private TextBox textBoxName;
private TextBox textBoxComment;
}
}