91 lines
3.3 KiB
C#
91 lines
3.3 KiB
C#
|
namespace PrecastConcretePlantView
|
|||
|
{
|
|||
|
partial class FormReportGroupedOrders
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
buttonCreateReport = new Button();
|
|||
|
panel.SuspendLayout();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel
|
|||
|
//
|
|||
|
panel.Controls.Add(buttonToPdf);
|
|||
|
panel.Controls.Add(buttonCreateReport);
|
|||
|
panel.Dock = DockStyle.Top;
|
|||
|
panel.Location = new Point(0, 0);
|
|||
|
panel.Margin = new Padding(4, 3, 4, 3);
|
|||
|
panel.Name = "panel";
|
|||
|
panel.Size = new Size(1031, 40);
|
|||
|
panel.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonToPdf
|
|||
|
//
|
|||
|
buttonToPdf.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|||
|
buttonToPdf.Location = new Point(188, 8);
|
|||
|
buttonToPdf.Margin = new Padding(4, 3, 4, 3);
|
|||
|
buttonToPdf.Name = "buttonToPdf";
|
|||
|
buttonToPdf.Size = new Size(139, 27);
|
|||
|
buttonToPdf.TabIndex = 5;
|
|||
|
buttonToPdf.Text = "В Pdf";
|
|||
|
buttonToPdf.UseVisualStyleBackColor = true;
|
|||
|
buttonToPdf.Click += ButtonToPdf_Click;
|
|||
|
//
|
|||
|
// buttonCreateReport
|
|||
|
//
|
|||
|
buttonCreateReport.Location = new Point(11, 8);
|
|||
|
buttonCreateReport.Margin = new Padding(4, 3, 4, 3);
|
|||
|
buttonCreateReport.Name = "buttonCreateReport";
|
|||
|
buttonCreateReport.Size = new Size(139, 27);
|
|||
|
buttonCreateReport.TabIndex = 4;
|
|||
|
buttonCreateReport.Text = "Сформировать";
|
|||
|
buttonCreateReport.UseVisualStyleBackColor = true;
|
|||
|
buttonCreateReport.Click += ButtonCreateReport_Click;
|
|||
|
//
|
|||
|
// FormReportGroupedOrders
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1031, 647);
|
|||
|
Controls.Add(panel);
|
|||
|
Margin = new Padding(4, 3, 4, 3);
|
|||
|
Name = "FormReportGroupedOrders";
|
|||
|
StartPosition = FormStartPosition.CenterScreen;
|
|||
|
Text = "Заказы по датам";
|
|||
|
panel.ResumeLayout(false);
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Panel panel;
|
|||
|
private System.Windows.Forms.Button buttonToPdf;
|
|||
|
private System.Windows.Forms.Button buttonCreateReport;
|
|||
|
}
|
|||
|
}
|