PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyView/FormReportOrders.Designer.cs

137 lines
5.7 KiB
C#
Raw Normal View History

2024-05-08 01:03:49 +04:00
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.buttonToPdf = new System.Windows.Forms.Button();
2024-05-08 05:01:41 +04:00
this.buttonMake = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
2024-05-08 01:03:49 +04:00
this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker();
2024-05-08 05:01:41 +04:00
this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker();
2024-05-08 01:03:49 +04:00
this.panel.SuspendLayout();
this.SuspendLayout();
//
// panel
//
this.panel.Controls.Add(this.buttonToPdf);
this.panel.Controls.Add(this.buttonMake);
2024-05-08 05:01:41 +04:00
this.panel.Controls.Add(this.label2);
2024-05-08 01:03:49 +04:00
this.panel.Controls.Add(this.label1);
2024-05-08 05:01:41 +04:00
this.panel.Controls.Add(this.dateTimePickerTo);
this.panel.Controls.Add(this.dateTimePickerFrom);
this.panel.Dock = System.Windows.Forms.DockStyle.Top;
this.panel.Location = new System.Drawing.Point(0, 0);
this.panel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-08 01:03:49 +04:00
this.panel.Name = "panel";
2024-05-08 05:01:41 +04:00
this.panel.Size = new System.Drawing.Size(973, 38);
2024-05-08 01:03:49 +04:00
this.panel.TabIndex = 0;
//
2024-05-08 05:01:41 +04:00
// buttonToPdf
2024-05-08 01:03:49 +04:00
//
2024-05-08 05:01:41 +04:00
this.buttonToPdf.Location = new System.Drawing.Point(782, 8);
this.buttonToPdf.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonToPdf.Name = "buttonToPdf";
this.buttonToPdf.Size = new System.Drawing.Size(137, 22);
this.buttonToPdf.TabIndex = 5;
this.buttonToPdf.Text = "В Pdf";
this.buttonToPdf.UseVisualStyleBackColor = true;
this.buttonToPdf.Click += new System.EventHandler(this.ButtonToPdf_Click);
2024-05-08 01:03:49 +04:00
//
// buttonMake
//
2024-05-08 05:01:41 +04:00
this.buttonMake.Location = new System.Drawing.Point(630, 8);
this.buttonMake.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-08 01:03:49 +04:00
this.buttonMake.Name = "buttonMake";
2024-05-08 05:01:41 +04:00
this.buttonMake.Size = new System.Drawing.Size(137, 22);
this.buttonMake.TabIndex = 4;
this.buttonMake.Text = "Сформировать";
2024-05-08 01:03:49 +04:00
this.buttonMake.UseVisualStyleBackColor = true;
2024-05-08 05:01:41 +04:00
this.buttonMake.Click += new System.EventHandler(this.ButtonMake_Click);
2024-05-08 01:03:49 +04:00
//
2024-05-08 05:01:41 +04:00
// label2
2024-05-08 01:03:49 +04:00
//
2024-05-08 05:01:41 +04:00
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(230, 13);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(21, 15);
this.label2.TabIndex = 3;
this.label2.Text = "по";
2024-05-08 01:03:49 +04:00
//
2024-05-08 05:01:41 +04:00
// label1
2024-05-08 01:03:49 +04:00
//
2024-05-08 05:01:41 +04:00
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(15, 15);
this.label1.TabIndex = 2;
this.label1.Text = "С";
2024-05-08 01:03:49 +04:00
//
// dateTimePickerTo
//
2024-05-08 05:01:41 +04:00
this.dateTimePickerTo.Location = new System.Drawing.Point(274, 9);
this.dateTimePickerTo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-08 01:03:49 +04:00
this.dateTimePickerTo.Name = "dateTimePickerTo";
this.dateTimePickerTo.Size = new System.Drawing.Size(148, 23);
this.dateTimePickerTo.TabIndex = 5;
//
2024-05-08 05:01:41 +04:00
// dateTimePickerFrom
//
this.dateTimePickerFrom.Location = new System.Drawing.Point(57, 9);
this.dateTimePickerFrom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
this.dateTimePickerFrom.Size = new System.Drawing.Size(154, 23);
this.dateTimePickerFrom.TabIndex = 0;
//
2024-05-08 01:03:49 +04:00
// FormReportOrders
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2024-05-08 05:01:41 +04:00
this.ClientSize = new System.Drawing.Size(973, 338);
2024-05-08 01:03:49 +04:00
this.Controls.Add(this.panel);
2024-05-08 05:01:41 +04:00
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-08 01:03:49 +04:00
this.Name = "FormReportOrders";
this.Text = "Заказы";
this.panel.ResumeLayout(false);
this.panel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private Panel panel;
private Button buttonMake;
2024-05-08 05:01:41 +04:00
private Label label2;
private Label label1;
2024-05-08 01:03:49 +04:00
private DateTimePicker dateTimePickerTo;
2024-05-08 05:01:41 +04:00
private DateTimePicker dateTimePickerFrom;
private Button buttonToPdf;
2024-05-08 01:03:49 +04:00
}
}