131 lines
4.4 KiB
C#
131 lines
4.4 KiB
C#
namespace LawFirmView
|
||
{
|
||
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.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.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.panel = new System.Windows.Forms.Panel();
|
||
this.panel.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// buttonMake
|
||
//
|
||
this.buttonMake.Location = new System.Drawing.Point(354, 3);
|
||
this.buttonMake.Name = "buttonMake";
|
||
this.buttonMake.Size = new System.Drawing.Size(127, 23);
|
||
this.buttonMake.TabIndex = 0;
|
||
this.buttonMake.Text = "Сформировать";
|
||
this.buttonMake.UseVisualStyleBackColor = true;
|
||
this.buttonMake.Click += new System.EventHandler(this.ButtonMake_Click);
|
||
//
|
||
// buttonToPdf
|
||
//
|
||
this.buttonToPdf.Location = new System.Drawing.Point(487, 5);
|
||
this.buttonToPdf.Name = "buttonToPdf";
|
||
this.buttonToPdf.Size = new System.Drawing.Size(75, 22);
|
||
this.buttonToPdf.TabIndex = 1;
|
||
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(28, 3);
|
||
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
|
||
this.dateTimePickerFrom.Size = new System.Drawing.Size(144, 23);
|
||
this.dateTimePickerFrom.TabIndex = 2;
|
||
//
|
||
// dateTimePickerTo
|
||
//
|
||
this.dateTimePickerTo.Location = new System.Drawing.Point(204, 3);
|
||
this.dateTimePickerTo.Name = "dateTimePickerTo";
|
||
this.dateTimePickerTo.Size = new System.Drawing.Size(144, 23);
|
||
this.dateTimePickerTo.TabIndex = 3;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(3, 9);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(15, 15);
|
||
this.label1.TabIndex = 4;
|
||
this.label1.Text = "С";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(178, 9);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(21, 15);
|
||
this.label2.TabIndex = 5;
|
||
this.label2.Text = "по";
|
||
//
|
||
// panel
|
||
//
|
||
this.panel.Controls.Add(this.dateTimePickerFrom);
|
||
this.panel.Controls.Add(this.buttonToPdf);
|
||
this.panel.Controls.Add(this.label1);
|
||
this.panel.Controls.Add(this.buttonMake);
|
||
this.panel.Controls.Add(this.label2);
|
||
this.panel.Controls.Add(this.dateTimePickerTo);
|
||
this.panel.Location = new System.Drawing.Point(0, 0);
|
||
this.panel.Name = "panel";
|
||
this.panel.Size = new System.Drawing.Size(893, 32);
|
||
this.panel.TabIndex = 6;
|
||
//
|
||
// FormReportOrders
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(892, 325);
|
||
this.Controls.Add(this.panel);
|
||
this.Name = "FormReportOrders";
|
||
this.Text = "Отчет по заказам";
|
||
this.Load += new System.EventHandler(this.FormReportOrders_Load);
|
||
this.panel.ResumeLayout(false);
|
||
this.panel.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonMake;
|
||
private Button buttonToPdf;
|
||
private DateTimePicker dateTimePickerFrom;
|
||
private DateTimePicker dateTimePickerTo;
|
||
private Label label1;
|
||
private Label label2;
|
||
private Panel panel;
|
||
}
|
||
} |