Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantView/FormCreateOrder.Designer.cs

153 lines
6.8 KiB
C#
Raw Normal View History

2024-03-22 20:10:17 +04:00
namespace PrecastConcretePlantView
{
partial class FormCreateOrder
{
/// <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.labelReinforced = new System.Windows.Forms.Label();
this.comboBoxReinforced = new System.Windows.Forms.ComboBox();
this.labelCount = new System.Windows.Forms.Label();
this.textBoxCount = new System.Windows.Forms.TextBox();
this.labelSumm = new System.Windows.Forms.Label();
this.textBoxSum = new System.Windows.Forms.TextBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelReinforced
//
this.labelReinforced.AutoSize = true;
this.labelReinforced.Location = new System.Drawing.Point(10, 11);
this.labelReinforced.Name = "labelReinforced";
this.labelReinforced.Size = new System.Drawing.Size(59, 15);
this.labelReinforced.TabIndex = 0;
this.labelReinforced.Text = "Изделие: ";
//
// comboBoxReinforced
//
this.comboBoxReinforced.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxReinforced.FormattingEnabled = true;
this.comboBoxReinforced.Location = new System.Drawing.Point(101, 9);
this.comboBoxReinforced.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxReinforced.Name = "comboBoxReinforced";
this.comboBoxReinforced.Size = new System.Drawing.Size(200, 23);
this.comboBoxReinforced.TabIndex = 1;
this.comboBoxReinforced.SelectedIndexChanged += new System.EventHandler(this.ComboBoxReinforced_SelectedIndexChanged);
//
// labelCount
//
this.labelCount.AutoSize = true;
this.labelCount.Location = new System.Drawing.Point(10, 37);
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(78, 15);
this.labelCount.TabIndex = 2;
this.labelCount.Text = "Количество: ";
//
// textBoxCount
//
this.textBoxCount.Location = new System.Drawing.Point(101, 34);
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(200, 23);
this.textBoxCount.TabIndex = 3;
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
//
// labelSumm
//
this.labelSumm.AutoSize = true;
this.labelSumm.Location = new System.Drawing.Point(10, 60);
this.labelSumm.Name = "labelSumm";
this.labelSumm.Size = new System.Drawing.Size(51, 15);
this.labelSumm.TabIndex = 4;
this.labelSumm.Text = "Сумма: ";
//
// textBoxSum
//
this.textBoxSum.Location = new System.Drawing.Point(101, 60);
this.textBoxSum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxSum.Name = "textBoxSum";
this.textBoxSum.ReadOnly = true;
this.textBoxSum.Size = new System.Drawing.Size(200, 23);
this.textBoxSum.TabIndex = 5;
this.textBoxSum.Click += new System.EventHandler(this.TextBoxCount_TextChanged);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(203, 87);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(96, 24);
this.buttonCancel.TabIndex = 6;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(101, 87);
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(96, 24);
this.buttonSave.TabIndex = 7;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// FormCreateOrder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(315, 118);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.textBoxSum);
this.Controls.Add(this.labelSumm);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.labelCount);
this.Controls.Add(this.comboBoxReinforced);
this.Controls.Add(this.labelReinforced);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FormCreateOrder";
this.Text = "Заказ";
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelReinforced;
private ComboBox comboBoxReinforced;
private Label labelCount;
private TextBox textBoxCount;
private Label labelSumm;
private TextBox textBoxSum;
private Button buttonCancel;
private Button buttonSave;
}
}