148 lines
6.3 KiB
C#
148 lines
6.3 KiB
C#
namespace ExamTimetable_Forms
|
|
{
|
|
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()
|
|
{
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.comboBoxUni = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.buttonCreate = new System.Windows.Forms.Button();
|
|
this.buttonUpdate = new System.Windows.Forms.Button();
|
|
this.buttonDelete = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 12);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(514, 333);
|
|
this.dataGridView.TabIndex = 0;
|
|
this.dataGridView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellClick);
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.Location = new System.Drawing.Point(638, 25);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(150, 23);
|
|
this.textBoxName.TabIndex = 1;
|
|
//
|
|
// comboBoxUni
|
|
//
|
|
this.comboBoxUni.FormattingEnabled = true;
|
|
this.comboBoxUni.Location = new System.Drawing.Point(638, 65);
|
|
this.comboBoxUni.Name = "comboBoxUni";
|
|
this.comboBoxUni.Size = new System.Drawing.Size(150, 23);
|
|
this.comboBoxUni.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(570, 28);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(62, 15);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "Название:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(553, 68);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(79, 15);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Университет:";
|
|
//
|
|
// buttonCreate
|
|
//
|
|
this.buttonCreate.Location = new System.Drawing.Point(713, 110);
|
|
this.buttonCreate.Name = "buttonCreate";
|
|
this.buttonCreate.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCreate.TabIndex = 5;
|
|
this.buttonCreate.Text = "Создать";
|
|
this.buttonCreate.UseVisualStyleBackColor = true;
|
|
this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click);
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
this.buttonUpdate.Location = new System.Drawing.Point(713, 150);
|
|
this.buttonUpdate.Name = "buttonUpdate";
|
|
this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonUpdate.TabIndex = 6;
|
|
this.buttonUpdate.Text = "Изменить";
|
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
|
|
//
|
|
// buttonDelete
|
|
//
|
|
this.buttonDelete.Location = new System.Drawing.Point(713, 193);
|
|
this.buttonDelete.Name = "buttonDelete";
|
|
this.buttonDelete.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDelete.TabIndex = 7;
|
|
this.buttonDelete.Text = "Удалить";
|
|
this.buttonDelete.UseVisualStyleBackColor = true;
|
|
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
|
//
|
|
// FormFaculty
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 357);
|
|
this.Controls.Add(this.buttonDelete);
|
|
this.Controls.Add(this.buttonUpdate);
|
|
this.Controls.Add(this.buttonCreate);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.comboBoxUni);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormFaculty";
|
|
this.Text = "FormFaculty";
|
|
this.Load += new System.EventHandler(this.FormFaculty_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private TextBox textBoxName;
|
|
private ComboBox comboBoxUni;
|
|
private Label label1;
|
|
private Label label2;
|
|
private Button buttonCreate;
|
|
private Button buttonUpdate;
|
|
private Button buttonDelete;
|
|
}
|
|
} |