163 lines
6.0 KiB
C#
163 lines
6.0 KiB
C#
namespace ProjectGSM.Forms
|
|
{
|
|
partial class FormCaseReport
|
|
{
|
|
/// <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()
|
|
{
|
|
textBoxFilePath = new TextBox();
|
|
fileLabel = new Label();
|
|
labelCase = new Label();
|
|
comboBoxCase = new ComboBox();
|
|
labelData1 = new Label();
|
|
labelDate2 = new Label();
|
|
dateTimePickerBegin = new DateTimePicker();
|
|
dateTimePickerEnd = new DateTimePicker();
|
|
ButtonSelectFilePath = new Button();
|
|
buttonMakeReport = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxFilePath
|
|
//
|
|
textBoxFilePath.Enabled = false;
|
|
textBoxFilePath.Location = new Point(124, 30);
|
|
textBoxFilePath.Name = "textBoxFilePath";
|
|
textBoxFilePath.Size = new Size(163, 23);
|
|
textBoxFilePath.TabIndex = 0;
|
|
//
|
|
// fileLabel
|
|
//
|
|
fileLabel.AutoSize = true;
|
|
fileLabel.Location = new Point(28, 33);
|
|
fileLabel.Name = "fileLabel";
|
|
fileLabel.Size = new Size(90, 15);
|
|
fileLabel.TabIndex = 1;
|
|
fileLabel.Text = "Путь до файла:";
|
|
//
|
|
// labelCase
|
|
//
|
|
labelCase.AutoSize = true;
|
|
labelCase.Location = new Point(28, 77);
|
|
labelCase.Name = "labelCase";
|
|
labelCase.Size = new Size(38, 15);
|
|
labelCase.TabIndex = 2;
|
|
labelCase.Text = "Дело:";
|
|
//
|
|
// comboBoxCase
|
|
//
|
|
comboBoxCase.FormattingEnabled = true;
|
|
comboBoxCase.Location = new Point(124, 69);
|
|
comboBoxCase.Name = "comboBoxCase";
|
|
comboBoxCase.Size = new Size(200, 23);
|
|
comboBoxCase.TabIndex = 3;
|
|
//
|
|
// labelData1
|
|
//
|
|
labelData1.AutoSize = true;
|
|
labelData1.Location = new Point(28, 128);
|
|
labelData1.Name = "labelData1";
|
|
labelData1.Size = new Size(77, 15);
|
|
labelData1.TabIndex = 4;
|
|
labelData1.Text = "Дата начала:";
|
|
//
|
|
// labelDate2
|
|
//
|
|
labelDate2.AutoSize = true;
|
|
labelDate2.Location = new Point(28, 177);
|
|
labelDate2.Name = "labelDate2";
|
|
labelDate2.Size = new Size(71, 15);
|
|
labelDate2.TabIndex = 5;
|
|
labelDate2.Text = "Дата конца:";
|
|
//
|
|
// dateTimePickerBegin
|
|
//
|
|
dateTimePickerBegin.Location = new Point(124, 122);
|
|
dateTimePickerBegin.Name = "dateTimePickerBegin";
|
|
dateTimePickerBegin.Size = new Size(200, 23);
|
|
dateTimePickerBegin.TabIndex = 6;
|
|
//
|
|
// dateTimePickerEnd
|
|
//
|
|
dateTimePickerEnd.Location = new Point(124, 171);
|
|
dateTimePickerEnd.Name = "dateTimePickerEnd";
|
|
dateTimePickerEnd.Size = new Size(200, 23);
|
|
dateTimePickerEnd.TabIndex = 7;
|
|
//
|
|
// ButtonSelectFilePath
|
|
//
|
|
ButtonSelectFilePath.Location = new Point(293, 30);
|
|
ButtonSelectFilePath.Name = "ButtonSelectFilePath";
|
|
ButtonSelectFilePath.Size = new Size(31, 23);
|
|
ButtonSelectFilePath.TabIndex = 8;
|
|
ButtonSelectFilePath.Text = "...";
|
|
ButtonSelectFilePath.UseVisualStyleBackColor = true;
|
|
ButtonSelectFilePath.Click += ButtonSelectFilePath_Click;
|
|
//
|
|
// buttonMakeReport
|
|
//
|
|
buttonMakeReport.Location = new Point(110, 221);
|
|
buttonMakeReport.Name = "buttonMakeReport";
|
|
buttonMakeReport.Size = new Size(166, 23);
|
|
buttonMakeReport.TabIndex = 9;
|
|
buttonMakeReport.Text = "Сформировать";
|
|
buttonMakeReport.UseVisualStyleBackColor = true;
|
|
buttonMakeReport.Click += ButtonMakeReport_Click;
|
|
//
|
|
// FormCaseReport
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(368, 257);
|
|
Controls.Add(buttonMakeReport);
|
|
Controls.Add(ButtonSelectFilePath);
|
|
Controls.Add(dateTimePickerEnd);
|
|
Controls.Add(dateTimePickerBegin);
|
|
Controls.Add(labelDate2);
|
|
Controls.Add(labelData1);
|
|
Controls.Add(comboBoxCase);
|
|
Controls.Add(labelCase);
|
|
Controls.Add(fileLabel);
|
|
Controls.Add(textBoxFilePath);
|
|
Name = "FormCaseReport";
|
|
Text = "Отчет по статусам дела";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxFilePath;
|
|
private Label fileLabel;
|
|
private Label labelCase;
|
|
private ComboBox comboBoxCase;
|
|
private Label labelData1;
|
|
private Label labelDate2;
|
|
private DateTimePicker dateTimePickerBegin;
|
|
private DateTimePicker dateTimePickerEnd;
|
|
private Button ButtonSelectFilePath;
|
|
private Button buttonMakeReport;
|
|
}
|
|
} |