131 lines
5.2 KiB
C#
131 lines
5.2 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.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.buttonMake = new System.Windows.Forms.Button();
|
||
this.buttonToPdf = new System.Windows.Forms.Button();
|
||
this.panel = new System.Windows.Forms.Panel();
|
||
this.panel.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// dateTimePickerFrom
|
||
//
|
||
this.dateTimePickerFrom.Location = new System.Drawing.Point(49, 12);
|
||
this.dateTimePickerFrom.Name = "dateTimePickerFrom";
|
||
this.dateTimePickerFrom.Size = new System.Drawing.Size(200, 23);
|
||
this.dateTimePickerFrom.TabIndex = 0;
|
||
//
|
||
// dateTimePickerTo
|
||
//
|
||
this.dateTimePickerTo.Location = new System.Drawing.Point(285, 12);
|
||
this.dateTimePickerTo.Name = "dateTimePickerTo";
|
||
this.dateTimePickerTo.Size = new System.Drawing.Size(200, 23);
|
||
this.dateTimePickerTo.TabIndex = 1;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(15, 18);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(18, 15);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "С:";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(255, 18);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(24, 15);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "по:";
|
||
//
|
||
// buttonMake
|
||
//
|
||
this.buttonMake.Location = new System.Drawing.Point(510, 14);
|
||
this.buttonMake.Name = "buttonMake";
|
||
this.buttonMake.Size = new System.Drawing.Size(101, 23);
|
||
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(637, 14);
|
||
this.buttonToPdf.Name = "buttonToPdf";
|
||
this.buttonToPdf.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonToPdf.TabIndex = 5;
|
||
this.buttonToPdf.Text = "В Pdf";
|
||
this.buttonToPdf.UseVisualStyleBackColor = true;
|
||
this.buttonToPdf.Click += new System.EventHandler(this.buttonToPdf_Click);
|
||
//
|
||
// panel
|
||
//
|
||
this.panel.Controls.Add(this.label1);
|
||
this.panel.Controls.Add(this.buttonToPdf);
|
||
this.panel.Controls.Add(this.dateTimePickerFrom);
|
||
this.panel.Controls.Add(this.buttonMake);
|
||
this.panel.Controls.Add(this.dateTimePickerTo);
|
||
this.panel.Controls.Add(this.label2);
|
||
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(800, 48);
|
||
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(800, 373);
|
||
this.Controls.Add(this.panel);
|
||
this.Name = "FormReportOrders";
|
||
this.Text = "FormReportOrders";
|
||
this.panel.ResumeLayout(false);
|
||
this.panel.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private DateTimePicker dateTimePickerFrom;
|
||
private DateTimePicker dateTimePickerTo;
|
||
private Label label1;
|
||
private Label label2;
|
||
private Button buttonMake;
|
||
private Button buttonToPdf;
|
||
private Panel panel;
|
||
}
|
||
} |