forked from DavidMakarov/StudentEnrollment
101 lines
2.7 KiB
C#
101 lines
2.7 KiB
C#
namespace StudentEnrollmentView
|
|
{
|
|
partial class FormStudentCourse
|
|
{
|
|
/// <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()
|
|
{
|
|
comboBoxCourse = new ComboBox();
|
|
label1 = new Label();
|
|
buttonAdd = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// comboBoxCourse
|
|
//
|
|
comboBoxCourse.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxCourse.FormattingEnabled = true;
|
|
comboBoxCourse.Location = new Point(154, 13);
|
|
comboBoxCourse.Margin = new Padding(3, 4, 3, 4);
|
|
comboBoxCourse.Name = "comboBoxCourse";
|
|
comboBoxCourse.Size = new Size(285, 28);
|
|
comboBoxCourse.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(11, 16);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(107, 20);
|
|
label1.TabIndex = 2;
|
|
label1.Text = "Направление:";
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(215, 58);
|
|
buttonAdd.Margin = new Padding(3, 4, 3, 4);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(98, 31);
|
|
buttonAdd.TabIndex = 4;
|
|
buttonAdd.Text = "Сохранить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(320, 58);
|
|
buttonCancel.Margin = new Padding(3, 4, 3, 4);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(98, 31);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormStudentCourse
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(451, 108);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(label1);
|
|
Controls.Add(comboBoxCourse);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormStudentCourse";
|
|
Text = "Направление студента";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxCourse;
|
|
private Label label1;
|
|
private Button buttonAdd;
|
|
private Button buttonCancel;
|
|
}
|
|
} |