Pibd-22_Lyakhov_T.I._Simple/StudentProgressRecord/FormFaculty.Designer.cs
2024-10-28 21:38:22 +04:00

93 lines
3.1 KiB
C#

namespace StudentProgressRecord
{
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()
{
labelFaculty = new Label();
textBoxFaculty = new TextBox();
buttonApply = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelFaculty
//
labelFaculty.AutoSize = true;
labelFaculty.Location = new Point(12, 95);
labelFaculty.Name = "labelFaculty";
labelFaculty.Size = new Size(157, 20);
labelFaculty.TabIndex = 0;
labelFaculty.Text = "Название факультета";
//
// textBoxFaculty
//
textBoxFaculty.Location = new Point(175, 92);
textBoxFaculty.Name = "textBoxFaculty";
textBoxFaculty.Size = new Size(348, 27);
textBoxFaculty.TabIndex = 1;
//
// buttonApply
//
buttonApply.Location = new Point(85, 144);
buttonApply.Name = "buttonApply";
buttonApply.Size = new Size(180, 29);
buttonApply.TabIndex = 2;
buttonApply.Text = "Сохранить";
buttonApply.UseVisualStyleBackColor = true;
//
// buttonCancel
//
buttonCancel.Location = new Point(271, 144);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(180, 29);
buttonCancel.TabIndex = 3;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
//
// FormFaculty
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(535, 263);
Controls.Add(buttonCancel);
Controls.Add(buttonApply);
Controls.Add(textBoxFaculty);
Controls.Add(labelFaculty);
Name = "FormFaculty";
Text = "Факультет";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelFaculty;
private TextBox textBoxFaculty;
private Button buttonApply;
private Button buttonCancel;
}
}