314 lines
9.4 KiB
C#

namespace StudentEnrollmentView
{
partial class FormStudent
{
/// <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()
{
label2 = new Label();
textBoxLastName = new TextBox();
groupBox1 = new GroupBox();
buttonRef = new Button();
buttonDel = new Button();
buttonUpd = new Button();
buttonAdd = new Button();
dataGridView = new DataGridView();
ColumnId = new DataGridViewTextBoxColumn();
ColumnCourseName = new DataGridViewTextBoxColumn();
buttonCancel = new Button();
buttonSave = new Button();
label1 = new Label();
textBoxFirstName = new TextBox();
label3 = new Label();
textBoxMiddleName = new TextBox();
label4 = new Label();
textBoxEmail = new TextBox();
label5 = new Label();
textBoxTIN = new TextBox();
buttonAddPoints = new Button();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(19, 20);
label2.Name = "label2";
label2.Size = new Size(76, 20);
label2.TabIndex = 5;
label2.Text = "Фамилия:";
//
// textBoxLastName
//
textBoxLastName.Location = new Point(109, 16);
textBoxLastName.Margin = new Padding(3, 4, 3, 4);
textBoxLastName.Name = "textBoxLastName";
textBoxLastName.Size = new Size(285, 27);
textBoxLastName.TabIndex = 4;
//
// groupBox1
//
groupBox1.Controls.Add(buttonRef);
groupBox1.Controls.Add(buttonDel);
groupBox1.Controls.Add(buttonUpd);
groupBox1.Controls.Add(buttonAdd);
groupBox1.Controls.Add(dataGridView);
groupBox1.Location = new Point(420, 20);
groupBox1.Margin = new Padding(3, 4, 3, 4);
groupBox1.Name = "groupBox1";
groupBox1.Padding = new Padding(3, 4, 3, 4);
groupBox1.Size = new Size(341, 333);
groupBox1.TabIndex = 8;
groupBox1.TabStop = false;
groupBox1.Text = "Направление";
//
// buttonRef
//
buttonRef.Location = new Point(205, 176);
buttonRef.Margin = new Padding(3, 4, 3, 4);
buttonRef.Name = "buttonRef";
buttonRef.Size = new Size(118, 37);
buttonRef.TabIndex = 8;
buttonRef.Text = "Обновить";
buttonRef.UseVisualStyleBackColor = true;
buttonRef.Click += buttonRef_Click;
//
// buttonDel
//
buttonDel.Location = new Point(205, 131);
buttonDel.Margin = new Padding(3, 4, 3, 4);
buttonDel.Name = "buttonDel";
buttonDel.Size = new Size(118, 37);
buttonDel.TabIndex = 7;
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
buttonDel.Click += buttonDel_Click;
//
// buttonUpd
//
buttonUpd.Location = new Point(205, 86);
buttonUpd.Margin = new Padding(3, 4, 3, 4);
buttonUpd.Name = "buttonUpd";
buttonUpd.Size = new Size(118, 37);
buttonUpd.TabIndex = 6;
buttonUpd.Text = "Изменить";
buttonUpd.UseVisualStyleBackColor = true;
buttonUpd.Click += buttonUpd_Click;
//
// buttonAdd
//
buttonAdd.Location = new Point(205, 40);
buttonAdd.Margin = new Padding(3, 4, 3, 4);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(118, 37);
buttonAdd.TabIndex = 5;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// dataGridView
//
dataGridView.BackgroundColor = Color.White;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnId, ColumnCourseName });
dataGridView.Location = new Point(7, 29);
dataGridView.Margin = new Padding(3, 4, 3, 4);
dataGridView.Name = "dataGridView";
dataGridView.RowHeadersWidth = 51;
dataGridView.RowTemplate.Height = 25;
dataGridView.Size = new Size(180, 290);
dataGridView.TabIndex = 0;
//
// ColumnId
//
ColumnId.HeaderText = "ColumnId";
ColumnId.MinimumWidth = 6;
ColumnId.Name = "ColumnId";
ColumnId.Visible = false;
ColumnId.Width = 125;
//
// ColumnCourseName
//
ColumnCourseName.HeaderText = "Направление";
ColumnCourseName.MinimumWidth = 6;
ColumnCourseName.Name = "ColumnCourseName";
ColumnCourseName.Width = 125;
//
// buttonCancel
//
buttonCancel.Location = new Point(642, 368);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(119, 37);
buttonCancel.TabIndex = 10;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(516, 368);
buttonSave.Margin = new Padding(3, 4, 3, 4);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(119, 37);
buttonSave.TabIndex = 9;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(19, 63);
label1.Name = "label1";
label1.Size = new Size(42, 20);
label1.TabIndex = 12;
label1.Text = "Имя:";
//
// textBoxFirstName
//
textBoxFirstName.Location = new Point(109, 59);
textBoxFirstName.Margin = new Padding(3, 4, 3, 4);
textBoxFirstName.Name = "textBoxFirstName";
textBoxFirstName.Size = new Size(285, 27);
textBoxFirstName.TabIndex = 11;
//
// label3
//
label3.Location = new Point(16, 98);
label3.Name = "label3";
label3.Size = new Size(130, 44);
label3.TabIndex = 14;
label3.Text = "Отчество (при наличии):";
//
// textBoxMiddleName
//
textBoxMiddleName.Location = new Point(155, 106);
textBoxMiddleName.Margin = new Padding(3, 4, 3, 4);
textBoxMiddleName.Name = "textBoxMiddleName";
textBoxMiddleName.Size = new Size(239, 27);
textBoxMiddleName.TabIndex = 13;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(19, 159);
label4.Name = "label4";
label4.Size = new Size(54, 20);
label4.TabIndex = 16;
label4.Text = "Почта:";
//
// textBoxEmail
//
textBoxEmail.Location = new Point(109, 155);
textBoxEmail.Margin = new Padding(3, 4, 3, 4);
textBoxEmail.Name = "textBoxEmail";
textBoxEmail.Size = new Size(285, 27);
textBoxEmail.TabIndex = 15;
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(19, 213);
label5.Name = "label5";
label5.Size = new Size(45, 20);
label5.TabIndex = 18;
label5.Text = "ИНН:";
//
// textBoxTIN
//
textBoxTIN.Location = new Point(109, 209);
textBoxTIN.Margin = new Padding(3, 4, 3, 4);
textBoxTIN.Name = "textBoxTIN";
textBoxTIN.Size = new Size(285, 27);
textBoxTIN.TabIndex = 17;
//
// buttonAddPoints
//
buttonAddPoints.Location = new Point(19, 368);
buttonAddPoints.Margin = new Padding(3, 4, 3, 4);
buttonAddPoints.Name = "buttonAddPoints";
buttonAddPoints.Size = new Size(229, 37);
buttonAddPoints.TabIndex = 19;
buttonAddPoints.Text = "Добавить баллы студента";
buttonAddPoints.UseVisualStyleBackColor = true;
buttonAddPoints.Click += buttonAddPoints_Click;
//
// FormStudent
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(773, 418);
Controls.Add(buttonAddPoints);
Controls.Add(label5);
Controls.Add(textBoxTIN);
Controls.Add(label4);
Controls.Add(textBoxEmail);
Controls.Add(label3);
Controls.Add(textBoxMiddleName);
Controls.Add(label1);
Controls.Add(textBoxFirstName);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(groupBox1);
Controls.Add(label2);
Controls.Add(textBoxLastName);
Margin = new Padding(3, 4, 3, 4);
Name = "FormStudent";
Text = "Студент";
Load += FormStudent_Load;
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label2;
private TextBox textBoxLastName;
private GroupBox groupBox1;
private DataGridView dataGridView;
private Button buttonRef;
private Button buttonDel;
private Button buttonUpd;
private Button buttonAdd;
private Button buttonCancel;
private Button buttonSave;
private DataGridViewTextBoxColumn ColumnId;
private DataGridViewTextBoxColumn ColumnCourseName;
private Label label1;
private TextBox textBoxFirstName;
private Label label3;
private TextBox textBoxMiddleName;
private Label label4;
private TextBox textBoxEmail;
private Label label5;
private TextBox textBoxTIN;
private Button buttonAddPoints;
}
}