forked from DavidMakarov/StudentEnrollment
100 lines
2.6 KiB
C#
100 lines
2.6 KiB
C#
namespace StudentEnrollmentView
|
|
{
|
|
partial class FormFaculty
|
|
{
|
|
/// <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();
|
|
textBoxName = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(31, 20);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(80, 20);
|
|
label1.TabIndex = 3;
|
|
label1.Text = "Название:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(129, 17);
|
|
textBoxName.Margin = new Padding(3, 4, 3, 4);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(243, 27);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(184, 73);
|
|
buttonSave.Margin = new Padding(3, 4, 3, 4);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(95, 31);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(286, 73);
|
|
buttonCancel.Margin = new Padding(3, 4, 3, 4);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(86, 31);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormFaculty
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(391, 126);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(label1);
|
|
Controls.Add(textBoxName);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormFaculty";
|
|
Text = "Факультет";
|
|
Load += FormFaculty_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private TextBox textBoxName;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |