141 lines
5.8 KiB
C#
141 lines
5.8 KiB
C#
namespace RestaurantView
|
|
{
|
|
partial class FormComponentProvider
|
|
{
|
|
/// <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.comboBoxProviders = new System.Windows.Forms.ComboBox();
|
|
this.labelProviders = new System.Windows.Forms.Label();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.labelDate = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// comboBoxProviders
|
|
//
|
|
this.comboBoxProviders.FormattingEnabled = true;
|
|
this.comboBoxProviders.Location = new System.Drawing.Point(91, 33);
|
|
this.comboBoxProviders.Name = "comboBoxProviders";
|
|
this.comboBoxProviders.Size = new System.Drawing.Size(219, 23);
|
|
this.comboBoxProviders.TabIndex = 0;
|
|
//
|
|
// labelProviders
|
|
//
|
|
this.labelProviders.AutoSize = true;
|
|
this.labelProviders.Location = new System.Drawing.Point(12, 36);
|
|
this.labelProviders.Name = "labelProviders";
|
|
this.labelProviders.Size = new System.Drawing.Size(73, 15);
|
|
this.labelProviders.TabIndex = 1;
|
|
this.labelProviders.Text = "Поставщик:";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(91, 75);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(219, 23);
|
|
this.textBoxCount.TabIndex = 2;
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(10, 78);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelCount.TabIndex = 3;
|
|
this.labelCount.Text = "Количество:";
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(65, 157);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 4;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(176, 157);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отменить";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
this.dateTimePicker.Location = new System.Drawing.Point(91, 115);
|
|
this.dateTimePicker.Name = "dateTimePicker";
|
|
this.dateTimePicker.Size = new System.Drawing.Size(219, 23);
|
|
this.dateTimePicker.TabIndex = 6;
|
|
//
|
|
// labelDate
|
|
//
|
|
this.labelDate.AutoSize = true;
|
|
this.labelDate.Location = new System.Drawing.Point(50, 115);
|
|
this.labelDate.Name = "labelDate";
|
|
this.labelDate.Size = new System.Drawing.Size(35, 15);
|
|
this.labelDate.TabIndex = 7;
|
|
this.labelDate.Text = "Дата:";
|
|
//
|
|
// FormComponentProvider
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(322, 206);
|
|
this.Controls.Add(this.labelDate);
|
|
this.Controls.Add(this.dateTimePicker);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.labelProviders);
|
|
this.Controls.Add(this.comboBoxProviders);
|
|
this.Name = "FormComponentProvider";
|
|
this.Text = "FormComponentProvider";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxProviders;
|
|
private Label labelProviders;
|
|
private TextBox textBoxCount;
|
|
private Label labelCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private DateTimePicker dateTimePicker;
|
|
private Label labelDate;
|
|
}
|
|
} |