104 lines
3.7 KiB
C#
104 lines
3.7 KiB
C#
namespace ProjectCompRepair.Forms
|
|
{
|
|
partial class FormMaster
|
|
{
|
|
/// <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()
|
|
{
|
|
labelName = new Label();
|
|
textBoxName = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(87, 73);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(39, 20);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "Имя";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
textBoxName.Location = new Point(160, 73);
|
|
textBoxName.Margin = new Padding(3, 4, 3, 4);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(114, 27);
|
|
textBoxName.TabIndex = 1;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
buttonSave.Location = new Point(31, 273);
|
|
buttonSave.Margin = new Padding(3, 4, 3, 4);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(97, 31);
|
|
buttonSave.TabIndex = 2;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonCancel.Location = new Point(208, 275);
|
|
buttonCancel.Margin = new Padding(3, 4, 3, 4);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(86, 31);
|
|
buttonCancel.TabIndex = 3;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormMaster
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(331, 337);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelName);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormMaster";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Мастер";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private TextBox textBoxName;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |