PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectioneryView/FormReportOrders.Designer.cs

137 lines
5.9 KiB
C#
Raw Normal View History

2024-04-09 15:45:07 +04:00
namespace ConfectioneryView
{
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.buttonSaveToPdf = new System.Windows.Forms.Button();
this.panel = new System.Windows.Forms.Panel();
this.buttonCreateReport = new System.Windows.Forms.Button();
this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker();
this.labelTo = new System.Windows.Forms.Label();
this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker();
this.labelFrom = new System.Windows.Forms.Label();
this.panel.SuspendLayout();
this.SuspendLayout();
//
// buttonSaveToPdf
//
this.buttonSaveToPdf.Location = new System.Drawing.Point(863, 13);
this.buttonSaveToPdf.Name = "buttonSaveToPdf";
this.buttonSaveToPdf.Size = new System.Drawing.Size(131, 34);
this.buttonSaveToPdf.TabIndex = 0;
this.buttonSaveToPdf.Text = "В Pdf";
this.buttonSaveToPdf.UseVisualStyleBackColor = true;
this.buttonSaveToPdf.Click += new System.EventHandler(this.ButtonToPdf_Click);
//
// panel
//
this.panel.Controls.Add(this.buttonSaveToPdf);
this.panel.Controls.Add(this.buttonCreateReport);
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.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(1111, 53);
this.panel.TabIndex = 1;
//
// buttonCreateReport
//
this.buttonCreateReport.Location = new System.Drawing.Point(544, 11);
this.buttonCreateReport.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.buttonCreateReport.Name = "buttonCreateReport";
this.buttonCreateReport.Size = new System.Drawing.Size(159, 36);
this.buttonCreateReport.TabIndex = 4;
this.buttonCreateReport.Text = "Сформировать";
this.buttonCreateReport.UseVisualStyleBackColor = true;
this.buttonCreateReport.Click += new System.EventHandler(this.ButtonMake_Click);
//
// dateTimePickerTo
//
this.dateTimePickerTo.Location = new System.Drawing.Point(271, 13);
this.dateTimePickerTo.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.dateTimePickerTo.Name = "dateTimePickerTo";
this.dateTimePickerTo.Size = new System.Drawing.Size(186, 27);
this.dateTimePickerTo.TabIndex = 3;
//
// labelTo
//
this.labelTo.AutoSize = true;
this.labelTo.Location = new System.Drawing.Point(238, 17);
this.labelTo.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.labelTo.Name = "labelTo";
this.labelTo.Size = new System.Drawing.Size(27, 20);
this.labelTo.TabIndex = 2;
this.labelTo.Text = "по";
//
// dateTimePickerFrom
//
this.dateTimePickerFrom.Location = new System.Drawing.Point(42, 13);
this.dateTimePickerFrom.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
this.dateTimePickerFrom.Size = new System.Drawing.Size(186, 27);
this.dateTimePickerFrom.TabIndex = 1;
//
// labelFrom
//
this.labelFrom.AutoSize = true;
this.labelFrom.Location = new System.Drawing.Point(16, 17);
this.labelFrom.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.labelFrom.Name = "labelFrom";
this.labelFrom.Size = new System.Drawing.Size(18, 20);
this.labelFrom.TabIndex = 0;
this.labelFrom.Text = "С";
//
// FormReportOrders
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1111, 450);
this.Controls.Add(this.panel);
this.Name = "FormReportOrders";
2024-04-20 15:51:24 +04:00
this.Text = "Заказы";
2024-04-09 15:45:07 +04:00
this.panel.ResumeLayout(false);
this.panel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private Button buttonSaveToPdf;
private Panel panel;
private Button buttonCreateReport;
private DateTimePicker dateTimePickerTo;
private Label labelTo;
private DateTimePicker dateTimePickerFrom;
private Label labelFrom;
}
}