namespace StudentEnrollmentView
{
partial class FormCourse
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
label1 = new Label();
comboBoxFaculty = new ComboBox();
label2 = new Label();
textBoxName = new TextBox();
buttonCancel = new Button();
buttonAdd = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(9, 20);
label1.Name = "label1";
label1.Size = new Size(81, 20);
label1.TabIndex = 4;
label1.Text = "Факультет:";
//
// comboBoxFaculty
//
comboBoxFaculty.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxFaculty.FormattingEnabled = true;
comboBoxFaculty.Location = new Point(101, 16);
comboBoxFaculty.Margin = new Padding(3, 4, 3, 4);
comboBoxFaculty.Name = "comboBoxFaculty";
comboBoxFaculty.Size = new Size(285, 28);
comboBoxFaculty.TabIndex = 3;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(9, 64);
label2.Name = "label2";
label2.Size = new Size(80, 20);
label2.TabIndex = 6;
label2.Text = "Название:";
//
// textBoxName
//
textBoxName.Location = new Point(102, 60);
textBoxName.Margin = new Padding(3, 4, 3, 4);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(285, 27);
textBoxName.TabIndex = 5;
//
// buttonCancel
//
buttonCancel.Location = new Point(320, 112);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(98, 31);
buttonCancel.TabIndex = 10;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonAdd
//
buttonAdd.Location = new Point(215, 112);
buttonAdd.Margin = new Padding(3, 4, 3, 4);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(98, 31);
buttonAdd.TabIndex = 9;
buttonAdd.Text = "Сохранить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += ButtonSave_Click;
//
// FormCourse
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(433, 160);
Controls.Add(buttonCancel);
Controls.Add(buttonAdd);
Controls.Add(label2);
Controls.Add(textBoxName);
Controls.Add(label1);
Controls.Add(comboBoxFaculty);
Margin = new Padding(3, 4, 3, 4);
Name = "FormCourse";
Text = "Направление";
Load += FormCourse_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private ComboBox comboBoxFaculty;
private Label label2;
private TextBox textBoxName;
private Button buttonCancel;
private Button buttonAdd;
}
}