143 lines
6.0 KiB
C#
143 lines
6.0 KiB
C#
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.ReinforcedNameLabel = new System.Windows.Forms.Label();
|
|
this.CountLabel = new System.Windows.Forms.Label();
|
|
this.SumLabel = new System.Windows.Forms.Label();
|
|
this.ReinforcedComboBox = new System.Windows.Forms.ComboBox();
|
|
this.CountTextBox = new System.Windows.Forms.TextBox();
|
|
this.SumTextBox = new System.Windows.Forms.TextBox();
|
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|
this.SaveButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// ReinforcedNameLabel
|
|
//
|
|
this.ReinforcedNameLabel.AutoSize = true;
|
|
this.ReinforcedNameLabel.Location = new System.Drawing.Point(12, 9);
|
|
this.ReinforcedNameLabel.Name = "ReinforcedNameLabel";
|
|
this.ReinforcedNameLabel.Size = new System.Drawing.Size(40, 15);
|
|
this.ReinforcedNameLabel.TabIndex = 0;
|
|
this.ReinforcedNameLabel.Text = "ЖБИ: ";
|
|
//
|
|
// CountLabel
|
|
//
|
|
this.CountLabel.AutoSize = true;
|
|
this.CountLabel.Location = new System.Drawing.Point(12, 40);
|
|
this.CountLabel.Name = "CountLabel";
|
|
this.CountLabel.Size = new System.Drawing.Size(78, 15);
|
|
this.CountLabel.TabIndex = 1;
|
|
this.CountLabel.Text = "Количество: ";
|
|
//
|
|
// SumLabel
|
|
//
|
|
this.SumLabel.AutoSize = true;
|
|
this.SumLabel.Location = new System.Drawing.Point(12, 72);
|
|
this.SumLabel.Name = "SumLabel";
|
|
this.SumLabel.Size = new System.Drawing.Size(51, 15);
|
|
this.SumLabel.TabIndex = 2;
|
|
this.SumLabel.Text = "Сумма: ";
|
|
//
|
|
// ReinforcedComboBox
|
|
//
|
|
this.ReinforcedComboBox.FormattingEnabled = true;
|
|
this.ReinforcedComboBox.Location = new System.Drawing.Point(93, 6);
|
|
this.ReinforcedComboBox.Name = "ReinforcedComboBox";
|
|
this.ReinforcedComboBox.Size = new System.Drawing.Size(201, 23);
|
|
this.ReinforcedComboBox.TabIndex = 3;
|
|
this.ReinforcedComboBox.SelectedIndexChanged += new System.EventHandler(this.ReinforcedComboBox_SelectedIndexChanged);
|
|
//
|
|
// CountTextBox
|
|
//
|
|
this.CountTextBox.Location = new System.Drawing.Point(93, 37);
|
|
this.CountTextBox.Name = "CountTextBox";
|
|
this.CountTextBox.Size = new System.Drawing.Size(201, 23);
|
|
this.CountTextBox.TabIndex = 4;
|
|
this.CountTextBox.TextChanged += new System.EventHandler(this.CountTextBox_TextChanged);
|
|
//
|
|
// SumTextBox
|
|
//
|
|
this.SumTextBox.Location = new System.Drawing.Point(93, 69);
|
|
this.SumTextBox.Name = "SumTextBox";
|
|
this.SumTextBox.Size = new System.Drawing.Size(201, 23);
|
|
this.SumTextBox.TabIndex = 5;
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
this.ButtonCancel.Location = new System.Drawing.Point(219, 113);
|
|
this.ButtonCancel.Name = "ButtonCancel";
|
|
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.ButtonCancel.TabIndex = 6;
|
|
this.ButtonCancel.Text = "Отменить";
|
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// SaveButton
|
|
//
|
|
this.SaveButton.Location = new System.Drawing.Point(138, 113);
|
|
this.SaveButton.Name = "SaveButton";
|
|
this.SaveButton.Size = new System.Drawing.Size(75, 23);
|
|
this.SaveButton.TabIndex = 7;
|
|
this.SaveButton.Text = "Сохранить";
|
|
this.SaveButton.UseVisualStyleBackColor = true;
|
|
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(309, 153);
|
|
this.Controls.Add(this.SaveButton);
|
|
this.Controls.Add(this.ButtonCancel);
|
|
this.Controls.Add(this.SumTextBox);
|
|
this.Controls.Add(this.CountTextBox);
|
|
this.Controls.Add(this.ReinforcedComboBox);
|
|
this.Controls.Add(this.SumLabel);
|
|
this.Controls.Add(this.CountLabel);
|
|
this.Controls.Add(this.ReinforcedNameLabel);
|
|
this.Name = "FormCreateOrder";
|
|
this.Text = "Заказ";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label ReinforcedNameLabel;
|
|
private Label CountLabel;
|
|
private Label SumLabel;
|
|
private ComboBox ReinforcedComboBox;
|
|
private TextBox CountTextBox;
|
|
private TextBox SumTextBox;
|
|
private Button ButtonCancel;
|
|
private Button SaveButton;
|
|
}
|
|
} |