174 lines
5.0 KiB
C#
174 lines
5.0 KiB
C#
namespace TaskTrackerView
|
|
{
|
|
partial class FormCreateTask
|
|
{
|
|
/// <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()
|
|
{
|
|
labelCount = new Label();
|
|
labelSum = new Label();
|
|
labelReinforced = new Label();
|
|
comboBoxReinforced = new ComboBox();
|
|
textBoxCount = new TextBox();
|
|
textBoxSum = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
labelClient = new Label();
|
|
comboBoxClient = new ComboBox();
|
|
SuspendLayout();
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(18, 76);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(102, 15);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Название задачи:";
|
|
//
|
|
// labelSum
|
|
//
|
|
labelSum.AutoSize = true;
|
|
labelSum.Location = new Point(18, 109);
|
|
labelSum.Name = "labelSum";
|
|
labelSum.Size = new Size(65, 15);
|
|
labelSum.TabIndex = 2;
|
|
labelSum.Text = "Описание:";
|
|
//
|
|
// labelReinforced
|
|
//
|
|
labelReinforced.AutoSize = true;
|
|
labelReinforced.Location = new Point(18, 11);
|
|
labelReinforced.Name = "labelReinforced";
|
|
labelReinforced.Size = new Size(50, 15);
|
|
labelReinforced.TabIndex = 3;
|
|
labelReinforced.Text = "Проект:";
|
|
//
|
|
// comboBoxReinforced
|
|
//
|
|
comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxReinforced.FormattingEnabled = true;
|
|
comboBoxReinforced.Location = new Point(126, 8);
|
|
comboBoxReinforced.Margin = new Padding(3, 2, 3, 2);
|
|
comboBoxReinforced.Name = "comboBoxReinforced";
|
|
comboBoxReinforced.Size = new Size(386, 23);
|
|
comboBoxReinforced.TabIndex = 4;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(126, 73);
|
|
textBoxCount.Margin = new Padding(3, 2, 3, 2);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(386, 23);
|
|
textBoxCount.TabIndex = 5;
|
|
//
|
|
// textBoxSum
|
|
//
|
|
textBoxSum.Location = new Point(126, 109);
|
|
textBoxSum.Margin = new Padding(3, 2, 3, 2);
|
|
textBoxSum.Multiline = true;
|
|
textBoxSum.Name = "textBoxSum";
|
|
textBoxSum.Size = new Size(386, 79);
|
|
textBoxSum.TabIndex = 6;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(342, 192);
|
|
buttonSave.Margin = new Padding(3, 2, 3, 2);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(82, 41);
|
|
buttonSave.TabIndex = 7;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(430, 192);
|
|
buttonCancel.Margin = new Padding(3, 2, 3, 2);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(82, 41);
|
|
buttonCancel.TabIndex = 8;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// labelClient
|
|
//
|
|
labelClient.AutoSize = true;
|
|
labelClient.Location = new Point(18, 44);
|
|
labelClient.Name = "labelClient";
|
|
labelClient.Size = new Size(69, 15);
|
|
labelClient.TabIndex = 9;
|
|
labelClient.Text = "Сотрудник:";
|
|
//
|
|
// comboBoxClient
|
|
//
|
|
comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxClient.FormattingEnabled = true;
|
|
comboBoxClient.Location = new Point(126, 41);
|
|
comboBoxClient.Margin = new Padding(3, 2, 3, 2);
|
|
comboBoxClient.Name = "comboBoxClient";
|
|
comboBoxClient.Size = new Size(386, 23);
|
|
comboBoxClient.TabIndex = 10;
|
|
//
|
|
// FormCreateTask
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(524, 291);
|
|
Controls.Add(comboBoxClient);
|
|
Controls.Add(labelClient);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxSum);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(comboBoxReinforced);
|
|
Controls.Add(labelReinforced);
|
|
Controls.Add(labelSum);
|
|
Controls.Add(labelCount);
|
|
Margin = new Padding(3, 2, 3, 2);
|
|
Name = "FormCreateTask";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Задача";
|
|
Load += FormCreateOrder_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
private Label labelCount;
|
|
private Label labelSum;
|
|
private Label labelReinforced;
|
|
private ComboBox comboBoxReinforced;
|
|
private TextBox textBoxCount;
|
|
private TextBox textBoxSum;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label labelClient;
|
|
private ComboBox comboBoxClient;
|
|
}
|
|
} |