90 lines
3.0 KiB
C#
90 lines
3.0 KiB
C#
namespace TypographyView
|
||
{
|
||
partial class FormReportDateOrders
|
||
{
|
||
/// <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()
|
||
{
|
||
panel = new Panel();
|
||
ButtonToPdf = new Button();
|
||
buttonMake = new Button();
|
||
panel.SuspendLayout();
|
||
SuspendLayout();
|
||
//
|
||
// panel
|
||
//
|
||
panel.Controls.Add(ButtonToPdf);
|
||
panel.Controls.Add(buttonMake);
|
||
panel.Dock = DockStyle.Top;
|
||
panel.Location = new Point(0, 0);
|
||
panel.Margin = new Padding(3, 4, 3, 4);
|
||
panel.Name = "panel";
|
||
panel.Size = new Size(914, 61);
|
||
panel.TabIndex = 0;
|
||
//
|
||
// ButtonToPdf
|
||
//
|
||
ButtonToPdf.Location = new Point(151, 16);
|
||
ButtonToPdf.Margin = new Padding(3, 4, 3, 4);
|
||
ButtonToPdf.Name = "ButtonToPdf";
|
||
ButtonToPdf.Size = new Size(86, 31);
|
||
ButtonToPdf.TabIndex = 7;
|
||
ButtonToPdf.Text = "В PDF";
|
||
ButtonToPdf.UseVisualStyleBackColor = true;
|
||
ButtonToPdf.Click += buttonToPDF_Click;
|
||
//
|
||
// buttonMake
|
||
//
|
||
buttonMake.Location = new Point(14, 16);
|
||
buttonMake.Margin = new Padding(3, 4, 3, 4);
|
||
buttonMake.Name = "buttonMake";
|
||
buttonMake.Size = new Size(131, 31);
|
||
buttonMake.TabIndex = 6;
|
||
buttonMake.Text = "Сформировать";
|
||
buttonMake.UseVisualStyleBackColor = true;
|
||
buttonMake.Click += buttonMake_Click;
|
||
//
|
||
// FormReportDateOrders
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(914, 600);
|
||
Controls.Add(panel);
|
||
Margin = new Padding(3, 4, 3, 4);
|
||
Name = "FormReportDateOrders";
|
||
Text = "Отчет по дням заказа";
|
||
FormClosed += FormReportDateOrders_FormClosed;
|
||
panel.ResumeLayout(false);
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Panel panel;
|
||
private Button ButtonToPdf;
|
||
private Button buttonMake;
|
||
}
|
||
} |