86 lines
2.8 KiB
C#
86 lines
2.8 KiB
C#
|
namespace AutomobilePlantView
|
|||
|
{
|
|||
|
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.Name = "panel";
|
|||
|
panel.Size = new Size(800, 46);
|
|||
|
panel.TabIndex = 0;
|
|||
|
//
|
|||
|
// ButtonToPdf
|
|||
|
//
|
|||
|
ButtonToPdf.Location = new Point(93, 12);
|
|||
|
ButtonToPdf.Name = "ButtonToPdf";
|
|||
|
ButtonToPdf.Size = new Size(75, 23);
|
|||
|
ButtonToPdf.TabIndex = 7;
|
|||
|
ButtonToPdf.Text = "To PDF";
|
|||
|
ButtonToPdf.UseVisualStyleBackColor = true;
|
|||
|
ButtonToPdf.Click += buttonToPDF_Click;
|
|||
|
//
|
|||
|
// buttonMake
|
|||
|
//
|
|||
|
buttonMake.Location = new Point(12, 12);
|
|||
|
buttonMake.Name = "buttonMake";
|
|||
|
buttonMake.Size = new Size(75, 23);
|
|||
|
buttonMake.TabIndex = 6;
|
|||
|
buttonMake.Text = "Make";
|
|||
|
buttonMake.UseVisualStyleBackColor = true;
|
|||
|
buttonMake.Click += buttonMake_Click;
|
|||
|
//
|
|||
|
// FormReportDateOrders
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(panel);
|
|||
|
Name = "FormReportDateOrders";
|
|||
|
Text = "FormReportDateOrders";
|
|||
|
FormClosed += FormReportDateOrders_FormClosed;
|
|||
|
panel.ResumeLayout(false);
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel;
|
|||
|
private Button ButtonToPdf;
|
|||
|
private Button buttonMake;
|
|||
|
}
|
|||
|
}
|