102 lines
2.7 KiB
C#
102 lines
2.7 KiB
C#
namespace TaskTrackerView
|
|
{
|
|
partial class FormProject
|
|
{
|
|
/// <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();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(10, 17);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(62, 15);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "Название:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(88, 15);
|
|
textBoxName.Margin = new Padding(3, 2, 3, 2);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(255, 23);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(261, 50);
|
|
buttonCancel.Margin = new Padding(3, 2, 3, 2);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(82, 40);
|
|
buttonCancel.TabIndex = 4;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(173, 50);
|
|
buttonSave.Margin = new Padding(3, 2, 3, 2);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(82, 40);
|
|
buttonSave.TabIndex = 5;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// FormProject
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(353, 96);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelName);
|
|
Margin = new Padding(3, 2, 3, 2);
|
|
Name = "FormProject";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Проект";
|
|
Load += FormComponent_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private TextBox textBoxName;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
}
|