PIbd-21_SagirovM.M._SUBD/Journal/FormSubject.Designer.cs

123 lines
3.4 KiB
C#
Raw Permalink Normal View History

namespace JournalView
{
partial class FormSubject
{
/// <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()
{
label1 = new Label();
label2 = new Label();
textBoxName = new TextBox();
textBoxHours = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(14, 24);
label1.Name = "label1";
label1.Size = new Size(148, 20);
label1.TabIndex = 0;
label1.Text = "Название предмета";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(14, 64);
label2.Name = "label2";
label2.Size = new Size(102, 20);
label2.TabIndex = 1;
label2.Text = "Кол-во часов";
//
// textBoxName
//
textBoxName.Location = new Point(231, 21);
textBoxName.Margin = new Padding(3, 4, 3, 4);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(193, 27);
textBoxName.TabIndex = 2;
//
// textBoxHours
//
textBoxHours.Location = new Point(231, 64);
textBoxHours.Margin = new Padding(3, 4, 3, 4);
textBoxHours.Name = "textBoxHours";
textBoxHours.Size = new Size(193, 27);
textBoxHours.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(231, 117);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 40);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(136, 117);
buttonSave.Margin = new Padding(3, 4, 3, 4);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(95, 40);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// FormSubject
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(510, 186);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxHours);
Controls.Add(textBoxName);
Controls.Add(label2);
Controls.Add(label1);
Margin = new Padding(3, 4, 3, 4);
Name = "FormSubject";
Text = "Предмет";
Load += FormSubject_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private TextBox textBoxName;
private TextBox textBoxHours;
private Button buttonCancel;
private Button buttonSave;
}
}