PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Forms/FormStatusHistory.Designer.cs

137 lines
4.6 KiB
C#
Raw Normal View History

2024-11-05 03:59:13 +04:00
namespace ProjectGSM.Forms
{
partial class FormStatusHistory
{
/// <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()
{
statusLabel = new Label();
saveButton = new Button();
cancelButton = new Button();
dateLabel = new Label();
dateTimePicker1 = new DateTimePicker();
caseLabel = new Label();
statusBox = new ComboBox();
caseBox = new ComboBox();
SuspendLayout();
//
// statusLabel
//
statusLabel.Location = new Point(10, 47);
statusLabel.Name = "statusLabel";
statusLabel.Size = new Size(100, 23);
statusLabel.TabIndex = 0;
statusLabel.Text = "Статус:";
//
// saveButton
//
saveButton.Location = new Point(116, 128);
saveButton.Name = "saveButton";
saveButton.Size = new Size(75, 23);
saveButton.TabIndex = 4;
saveButton.Text = "Сохранить";
saveButton.Click += saveButton_Click;
//
// cancelButton
//
cancelButton.Location = new Point(197, 128);
cancelButton.Name = "cancelButton";
cancelButton.Size = new Size(75, 23);
cancelButton.TabIndex = 5;
cancelButton.Text = "Отмена";
cancelButton.Click += cancelButton_Click;
//
// dateLabel
//
dateLabel.Location = new Point(10, 92);
dateLabel.Name = "dateLabel";
dateLabel.Size = new Size(111, 23);
dateLabel.TabIndex = 13;
dateLabel.Text = "Дата:";
//
// dateTimePicker1
//
dateTimePicker1.Location = new Point(125, 92);
dateTimePicker1.Name = "dateTimePicker1";
dateTimePicker1.Size = new Size(120, 23);
dateTimePicker1.TabIndex = 14;
//
// caseLabel
//
caseLabel.Location = new Point(10, 7);
caseLabel.Name = "caseLabel";
caseLabel.Size = new Size(100, 23);
caseLabel.TabIndex = 15;
caseLabel.Text = "Дело:";
//
// statusBox
//
statusBox.DropDownStyle = ComboBoxStyle.DropDownList;
statusBox.FormattingEnabled = true;
statusBox.Location = new Point(125, 47);
statusBox.Name = "statusBox";
statusBox.Size = new Size(121, 23);
statusBox.TabIndex = 16;
//
// caseBox
//
caseBox.DropDownStyle = ComboBoxStyle.DropDownList;
caseBox.FormattingEnabled = true;
caseBox.Location = new Point(125, 7);
caseBox.Name = "caseBox";
caseBox.Size = new Size(121, 23);
caseBox.TabIndex = 17;
//
// FormStatusHistory
//
ClientSize = new Size(284, 163);
Controls.Add(caseBox);
Controls.Add(statusBox);
Controls.Add(caseLabel);
Controls.Add(dateTimePicker1);
Controls.Add(dateLabel);
Controls.Add(statusLabel);
Controls.Add(saveButton);
Controls.Add(cancelButton);
Name = "FormStatusHistory";
StartPosition = FormStartPosition.CenterScreen;
Text = "Хронология статусов";
ResumeLayout(false);
}
#endregion
private Label statusLabel;
private Button saveButton;
private Button cancelButton;
private Label dateLabel;
private DateTimePicker dateTimePicker1;
private Label caseLabel;
private ComboBox statusBox;
private ComboBox caseBox;
}
}