120 lines
3.2 KiB
C#
120 lines
3.2 KiB
C#
namespace PersonnelDepartmentView
|
|
{
|
|
partial class FormDepartment
|
|
{
|
|
/// <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();
|
|
textBoxTelephone = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
label1 = new Label();
|
|
textBoxName = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(20, 44);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(126, 15);
|
|
label2.TabIndex = 19;
|
|
label2.Text = "Контактный телефон:";
|
|
//
|
|
// textBoxTelephone
|
|
//
|
|
textBoxTelephone.Location = new Point(153, 41);
|
|
textBoxTelephone.Name = "textBoxTelephone";
|
|
textBoxTelephone.Size = new Size(202, 23);
|
|
textBoxTelephone.TabIndex = 18;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(280, 70);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 17;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(199, 70);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 16;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(20, 15);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(102, 15);
|
|
label1.TabIndex = 15;
|
|
label1.Text = "Название отдела:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(153, 12);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(202, 23);
|
|
textBoxName.TabIndex = 14;
|
|
//
|
|
// FormDepartment
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(375, 108);
|
|
Controls.Add(label2);
|
|
Controls.Add(textBoxTelephone);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(label1);
|
|
Controls.Add(textBoxName);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
Name = "FormDepartment";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Отдел";
|
|
Load += FormDepartment_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label2;
|
|
private TextBox textBoxTelephone;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private Label label1;
|
|
private TextBox textBoxName;
|
|
}
|
|
} |