131 lines
5.2 KiB
C#
131 lines
5.2 KiB
C#
namespace PizzeriaView
|
||
{
|
||
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()
|
||
{
|
||
this.panel = new System.Windows.Forms.Panel();
|
||
this.labelFrom = new System.Windows.Forms.Label();
|
||
this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker();
|
||
this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker();
|
||
this.labelTo = new System.Windows.Forms.Label();
|
||
this.buttonMake = new System.Windows.Forms.Button();
|
||
this.buttonToPDF = new System.Windows.Forms.Button();
|
||
this.panel.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// panel
|
||
//
|
||
this.panel.Controls.Add(this.buttonToPDF);
|
||
this.panel.Controls.Add(this.buttonMake);
|
||
this.panel.Controls.Add(this.dateTimePickerTo);
|
||
this.panel.Controls.Add(this.labelTo);
|
||
this.panel.Controls.Add(this.dateTimePickerFrom);
|
||
this.panel.Controls.Add(this.labelFrom);
|
||
this.panel.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.panel.Location = new System.Drawing.Point(0, 0);
|
||
this.panel.Name = "panel";
|
||
this.panel.Size = new System.Drawing.Size(958, 52);
|
||
this.panel.TabIndex = 0;
|
||
//
|
||
// labelFrom
|
||
//
|
||
this.labelFrom.AutoSize = true;
|
||
this.labelFrom.Location = new System.Drawing.Point(12, 14);
|
||
this.labelFrom.Name = "labelFrom";
|
||
this.labelFrom.Size = new System.Drawing.Size(18, 20);
|
||
this.labelFrom.TabIndex = 0;
|
||
this.labelFrom.Text = "C";
|
||
//
|
||
// dateTimePickerFrom
|
||
//
|
||
this.dateTimePickerFrom.Location = new System.Drawing.Point(36, 9);
|
||
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
|
||
this.dateTimePickerFrom.Size = new System.Drawing.Size(199, 27);
|
||
this.dateTimePickerFrom.TabIndex = 1;
|
||
//
|
||
// dateTimePickerTo
|
||
//
|
||
this.dateTimePickerTo.Location = new System.Drawing.Point(300, 9);
|
||
this.dateTimePickerTo.Name = "dateTimePickerTo";
|
||
this.dateTimePickerTo.Size = new System.Drawing.Size(199, 27);
|
||
this.dateTimePickerTo.TabIndex = 3;
|
||
//
|
||
// labelTo
|
||
//
|
||
this.labelTo.AutoSize = true;
|
||
this.labelTo.Location = new System.Drawing.Point(254, 14);
|
||
this.labelTo.Name = "labelTo";
|
||
this.labelTo.Size = new System.Drawing.Size(27, 20);
|
||
this.labelTo.TabIndex = 2;
|
||
this.labelTo.Text = "по";
|
||
//
|
||
// buttonMake
|
||
//
|
||
this.buttonMake.Location = new System.Drawing.Point(542, 10);
|
||
this.buttonMake.Name = "buttonMake";
|
||
this.buttonMake.Size = new System.Drawing.Size(165, 29);
|
||
this.buttonMake.TabIndex = 4;
|
||
this.buttonMake.Text = "Сформировать";
|
||
this.buttonMake.UseVisualStyleBackColor = true;
|
||
this.buttonMake.Click += new System.EventHandler(this.ButtonMake_Click);
|
||
//
|
||
// buttonToPDF
|
||
//
|
||
this.buttonToPDF.Location = new System.Drawing.Point(781, 9);
|
||
this.buttonToPDF.Name = "buttonToPDF";
|
||
this.buttonToPDF.Size = new System.Drawing.Size(165, 29);
|
||
this.buttonToPDF.TabIndex = 5;
|
||
this.buttonToPDF.Text = "В PDF";
|
||
this.buttonToPDF.UseVisualStyleBackColor = true;
|
||
this.buttonToPDF.Click += new System.EventHandler(this.ButtonToPdf_Click);
|
||
//
|
||
// FormReportOrders
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(958, 450);
|
||
this.Controls.Add(this.panel);
|
||
this.Name = "FormReportOrders";
|
||
this.Text = "Заказы";
|
||
this.panel.ResumeLayout(false);
|
||
this.panel.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Panel panel;
|
||
private Button buttonToPDF;
|
||
private Button buttonMake;
|
||
private DateTimePicker dateTimePickerTo;
|
||
private Label labelTo;
|
||
private DateTimePicker dateTimePickerFrom;
|
||
private Label labelFrom;
|
||
}
|
||
} |