130 lines
4.5 KiB
C#
130 lines
4.5 KiB
C#
|
namespace AircraftPlantView
|
|||
|
{
|
|||
|
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();
|
|||
|
label2 = new Label();
|
|||
|
label1 = new Label();
|
|||
|
ButtonToPdf = new Button();
|
|||
|
ButtonCreateReport = new Button();
|
|||
|
dateTimePickerTo = new DateTimePicker();
|
|||
|
dateTimePickerFrom = new DateTimePicker();
|
|||
|
panel.SuspendLayout();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel
|
|||
|
//
|
|||
|
panel.Controls.Add(label2);
|
|||
|
panel.Controls.Add(label1);
|
|||
|
panel.Controls.Add(ButtonToPdf);
|
|||
|
panel.Controls.Add(ButtonCreateReport);
|
|||
|
panel.Controls.Add(dateTimePickerTo);
|
|||
|
panel.Controls.Add(dateTimePickerFrom);
|
|||
|
panel.Dock = DockStyle.Top;
|
|||
|
panel.Location = new Point(0, 0);
|
|||
|
panel.Name = "panel";
|
|||
|
panel.Size = new Size(1322, 69);
|
|||
|
panel.TabIndex = 0;
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(296, 25);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(27, 20);
|
|||
|
label2.TabIndex = 2;
|
|||
|
label2.Text = "по";
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(3, 24);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(18, 20);
|
|||
|
label1.TabIndex = 1;
|
|||
|
label1.Text = "С";
|
|||
|
//
|
|||
|
// ButtonToPdf
|
|||
|
//
|
|||
|
ButtonToPdf.Location = new Point(995, 20);
|
|||
|
ButtonToPdf.Name = "ButtonToPdf";
|
|||
|
ButtonToPdf.Size = new Size(286, 29);
|
|||
|
ButtonToPdf.TabIndex = 3;
|
|||
|
ButtonToPdf.Text = "Сохранить в PDF";
|
|||
|
ButtonToPdf.UseVisualStyleBackColor = true;
|
|||
|
ButtonToPdf.Click += ButtonToPdf_Click;
|
|||
|
//
|
|||
|
// ButtonCreateReport
|
|||
|
//
|
|||
|
ButtonCreateReport.Location = new Point(679, 20);
|
|||
|
ButtonCreateReport.Name = "ButtonCreateReport";
|
|||
|
ButtonCreateReport.Size = new Size(286, 29);
|
|||
|
ButtonCreateReport.TabIndex = 2;
|
|||
|
ButtonCreateReport.Text = "Вывести отчёт";
|
|||
|
ButtonCreateReport.UseVisualStyleBackColor = true;
|
|||
|
ButtonCreateReport.Click += ButtonCreateReport_Click;
|
|||
|
//
|
|||
|
// dateTimePickerTo
|
|||
|
//
|
|||
|
dateTimePickerTo.Location = new Point(342, 22);
|
|||
|
dateTimePickerTo.Name = "dateTimePickerTo";
|
|||
|
dateTimePickerTo.Size = new Size(250, 27);
|
|||
|
dateTimePickerTo.TabIndex = 1;
|
|||
|
//
|
|||
|
// dateTimePickerFrom
|
|||
|
//
|
|||
|
dateTimePickerFrom.Location = new Point(27, 20);
|
|||
|
dateTimePickerFrom.Name = "dateTimePickerFrom";
|
|||
|
dateTimePickerFrom.Size = new Size(250, 27);
|
|||
|
dateTimePickerFrom.TabIndex = 0;
|
|||
|
//
|
|||
|
// FormReportOrders
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1322, 528);
|
|||
|
Controls.Add(panel);
|
|||
|
Name = "FormReportOrders";
|
|||
|
Text = "Заказы";
|
|||
|
panel.ResumeLayout(false);
|
|||
|
panel.PerformLayout();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel;
|
|||
|
private Label label2;
|
|||
|
private Label label1;
|
|||
|
private Button ButtonToPdf;
|
|||
|
private Button ButtonCreateReport;
|
|||
|
private DateTimePicker dateTimePickerTo;
|
|||
|
private DateTimePicker dateTimePickerFrom;
|
|||
|
}
|
|||
|
}
|