82 lines
2.6 KiB
C#
82 lines
2.6 KiB
C#
|
namespace GiftShopView
|
|||
|
{
|
|||
|
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();
|
|||
|
MakeButton = new Button();
|
|||
|
ToPdfButton = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel
|
|||
|
//
|
|||
|
panel.Location = new Point(12, 71);
|
|||
|
panel.Name = "panel";
|
|||
|
panel.Size = new Size(776, 367);
|
|||
|
panel.TabIndex = 0;
|
|||
|
//
|
|||
|
// MakeButton
|
|||
|
//
|
|||
|
MakeButton.Location = new Point(12, 36);
|
|||
|
MakeButton.Name = "MakeButton";
|
|||
|
MakeButton.Size = new Size(131, 29);
|
|||
|
MakeButton.TabIndex = 1;
|
|||
|
MakeButton.Text = "Сформировать";
|
|||
|
MakeButton.UseVisualStyleBackColor = true;
|
|||
|
MakeButton.Click += MakeButton_Click;
|
|||
|
//
|
|||
|
// ToPdfButton
|
|||
|
//
|
|||
|
ToPdfButton.Location = new Point(149, 36);
|
|||
|
ToPdfButton.Name = "ToPdfButton";
|
|||
|
ToPdfButton.Size = new Size(94, 29);
|
|||
|
ToPdfButton.TabIndex = 2;
|
|||
|
ToPdfButton.Text = "В PDF";
|
|||
|
ToPdfButton.UseVisualStyleBackColor = true;
|
|||
|
ToPdfButton.Click += ToPdfButton_Click;
|
|||
|
//
|
|||
|
// ReportDateOrdersForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(ToPdfButton);
|
|||
|
Controls.Add(MakeButton);
|
|||
|
Controls.Add(panel);
|
|||
|
Name = "ReportDateOrdersForm";
|
|||
|
Text = "Заказы по датам";
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel;
|
|||
|
private Button MakeButton;
|
|||
|
private Button ToPdfButton;
|
|||
|
}
|
|||
|
}
|