133 lines
4.9 KiB
C#
133 lines
4.9 KiB
C#
namespace SoftwareInstallationView
|
|
{
|
|
partial class FormReportOrders
|
|
{
|
|
/// <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()
|
|
{
|
|
panel = new Panel();
|
|
buttonCreateToPdf = new Button();
|
|
buttonCreateReport = new Button();
|
|
dateTimePickerEnd = new DateTimePicker();
|
|
dateTimePickerStart = new DateTimePicker();
|
|
labelEnd = new Label();
|
|
labelStart = new Label();
|
|
panel.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// panel
|
|
//
|
|
panel.Controls.Add(buttonCreateToPdf);
|
|
panel.Controls.Add(buttonCreateReport);
|
|
panel.Controls.Add(dateTimePickerEnd);
|
|
panel.Controls.Add(dateTimePickerStart);
|
|
panel.Controls.Add(labelEnd);
|
|
panel.Controls.Add(labelStart);
|
|
panel.Location = new Point(1, 0);
|
|
panel.Name = "panel";
|
|
panel.Size = new Size(800, 77);
|
|
panel.TabIndex = 0;
|
|
//
|
|
// buttonCreateToPdf
|
|
//
|
|
buttonCreateToPdf.Location = new Point(519, 45);
|
|
buttonCreateToPdf.Margin = new Padding(3, 2, 3, 2);
|
|
buttonCreateToPdf.Name = "buttonCreateToPdf";
|
|
buttonCreateToPdf.Size = new Size(166, 23);
|
|
buttonCreateToPdf.TabIndex = 6;
|
|
buttonCreateToPdf.Text = "PDF";
|
|
buttonCreateToPdf.UseVisualStyleBackColor = true;
|
|
buttonCreateToPdf.Click += buttonCreateToPdf_Click;
|
|
//
|
|
// buttonCreateReport
|
|
//
|
|
buttonCreateReport.Location = new Point(519, 11);
|
|
buttonCreateReport.Margin = new Padding(3, 2, 3, 2);
|
|
buttonCreateReport.Name = "buttonCreateReport";
|
|
buttonCreateReport.Size = new Size(166, 23);
|
|
buttonCreateReport.TabIndex = 5;
|
|
buttonCreateReport.Text = "Сформировать";
|
|
buttonCreateReport.UseVisualStyleBackColor = true;
|
|
buttonCreateReport.Click += buttonCreateReport_Click;
|
|
//
|
|
// dateTimePickerEnd
|
|
//
|
|
dateTimePickerEnd.Location = new Point(280, 32);
|
|
dateTimePickerEnd.Margin = new Padding(3, 2, 3, 2);
|
|
dateTimePickerEnd.Name = "dateTimePickerEnd";
|
|
dateTimePickerEnd.Size = new Size(164, 23);
|
|
dateTimePickerEnd.TabIndex = 3;
|
|
//
|
|
// dateTimePickerStart
|
|
//
|
|
dateTimePickerStart.Location = new Point(34, 32);
|
|
dateTimePickerStart.Margin = new Padding(3, 2, 3, 2);
|
|
dateTimePickerStart.Name = "dateTimePickerStart";
|
|
dateTimePickerStart.Size = new Size(164, 23);
|
|
dateTimePickerStart.TabIndex = 2;
|
|
//
|
|
// labelEnd
|
|
//
|
|
labelEnd.AutoSize = true;
|
|
labelEnd.Location = new Point(335, 15);
|
|
labelEnd.Name = "labelEnd";
|
|
labelEnd.Size = new Size(41, 15);
|
|
labelEnd.TabIndex = 1;
|
|
labelEnd.Text = "Конец";
|
|
//
|
|
// labelStart
|
|
//
|
|
labelStart.AutoSize = true;
|
|
labelStart.Location = new Point(80, 15);
|
|
labelStart.Name = "labelStart";
|
|
labelStart.Size = new Size(49, 15);
|
|
labelStart.TabIndex = 0;
|
|
labelStart.Text = "Начало";
|
|
//
|
|
// FormReportOrders
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(panel);
|
|
Name = "FormReportOrders";
|
|
Text = "Заказы";
|
|
panel.ResumeLayout(false);
|
|
panel.PerformLayout();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel;
|
|
private Button buttonCreateToPdf;
|
|
private Button buttonCreateReport;
|
|
private DateTimePicker dateTimePickerEnd;
|
|
private DateTimePicker dateTimePickerStart;
|
|
private Label labelEnd;
|
|
private Label labelStart;
|
|
}
|
|
} |