130 lines
5.1 KiB
C#
130 lines
5.1 KiB
C#
namespace FurnitureAssemblyView
|
||
{
|
||
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.labelS = new System.Windows.Forms.Label();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.buttonMake = new System.Windows.Forms.Button();
|
||
this.buttonToPdf = new System.Windows.Forms.Button();
|
||
this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker();
|
||
this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker();
|
||
this.panel.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// panel
|
||
//
|
||
this.panel.Controls.Add(this.dateTimePickerTo);
|
||
this.panel.Controls.Add(this.buttonToPdf);
|
||
this.panel.Controls.Add(this.dateTimePickerFrom);
|
||
this.panel.Controls.Add(this.buttonMake);
|
||
this.panel.Controls.Add(this.label1);
|
||
this.panel.Controls.Add(this.labelS);
|
||
this.panel.Location = new System.Drawing.Point(12, 12);
|
||
this.panel.Name = "panel";
|
||
this.panel.Size = new System.Drawing.Size(874, 73);
|
||
this.panel.TabIndex = 0;
|
||
//
|
||
// labelS
|
||
//
|
||
this.labelS.AutoSize = true;
|
||
this.labelS.Location = new System.Drawing.Point(17, 28);
|
||
this.labelS.Name = "labelS";
|
||
this.labelS.Size = new System.Drawing.Size(15, 15);
|
||
this.labelS.TabIndex = 0;
|
||
this.labelS.Text = "C";
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(258, 33);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(21, 15);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "по";
|
||
//
|
||
// buttonMake
|
||
//
|
||
this.buttonMake.Location = new System.Drawing.Point(573, 12);
|
||
this.buttonMake.Name = "buttonMake";
|
||
this.buttonMake.Size = new System.Drawing.Size(118, 41);
|
||
this.buttonMake.TabIndex = 2;
|
||
this.buttonMake.Text = "Создать";
|
||
this.buttonMake.UseVisualStyleBackColor = true;
|
||
this.buttonMake.Click += new System.EventHandler(this.buttonMake_Click);
|
||
//
|
||
// buttonToPdf
|
||
//
|
||
this.buttonToPdf.Location = new System.Drawing.Point(709, 12);
|
||
this.buttonToPdf.Name = "buttonToPdf";
|
||
this.buttonToPdf.Size = new System.Drawing.Size(118, 40);
|
||
this.buttonToPdf.TabIndex = 3;
|
||
this.buttonToPdf.Text = "В pdf";
|
||
this.buttonToPdf.UseVisualStyleBackColor = true;
|
||
this.buttonToPdf.Click += new System.EventHandler(this.buttonToPdf_Click);
|
||
//
|
||
// dateTimePickerFrom
|
||
//
|
||
this.dateTimePickerFrom.Location = new System.Drawing.Point(82, 28);
|
||
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
|
||
this.dateTimePickerFrom.Size = new System.Drawing.Size(136, 23);
|
||
this.dateTimePickerFrom.TabIndex = 4;
|
||
//
|
||
// dateTimePickerTo
|
||
//
|
||
this.dateTimePickerTo.Location = new System.Drawing.Point(303, 29);
|
||
this.dateTimePickerTo.Name = "dateTimePickerTo";
|
||
this.dateTimePickerTo.Size = new System.Drawing.Size(148, 23);
|
||
this.dateTimePickerTo.TabIndex = 5;
|
||
//
|
||
// FormReportOrders
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(898, 297);
|
||
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 Label label1;
|
||
private Label labelS;
|
||
private Button buttonToPdf;
|
||
private Button buttonMake;
|
||
private DateTimePicker dateTimePickerFrom;
|
||
private DateTimePicker dateTimePickerTo;
|
||
}
|
||
} |