144 lines
6.0 KiB
C#
144 lines
6.0 KiB
C#
namespace ComputersShop
|
|
{
|
|
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.labelComputerName = new System.Windows.Forms.Label();
|
|
this.labelAmount = new System.Windows.Forms.Label();
|
|
this.labelCost = new System.Windows.Forms.Label();
|
|
this.comboBoxComputer = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.textBoxSum = new System.Windows.Forms.TextBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelComputerName
|
|
//
|
|
this.labelComputerName.AutoSize = true;
|
|
this.labelComputerName.Location = new System.Drawing.Point(24, 28);
|
|
this.labelComputerName.Name = "labelComputerName";
|
|
this.labelComputerName.Size = new System.Drawing.Size(56, 15);
|
|
this.labelComputerName.TabIndex = 0;
|
|
this.labelComputerName.Text = "Изделие:";
|
|
//
|
|
// labelAmount
|
|
//
|
|
this.labelAmount.AutoSize = true;
|
|
this.labelAmount.Location = new System.Drawing.Point(24, 71);
|
|
this.labelAmount.Name = "labelAmount";
|
|
this.labelAmount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelAmount.TabIndex = 1;
|
|
this.labelAmount.Text = "Количество:";
|
|
//
|
|
// labelCost
|
|
//
|
|
this.labelCost.AutoSize = true;
|
|
this.labelCost.Location = new System.Drawing.Point(24, 111);
|
|
this.labelCost.Name = "labelCost";
|
|
this.labelCost.Size = new System.Drawing.Size(48, 15);
|
|
this.labelCost.TabIndex = 2;
|
|
this.labelCost.Text = "Сумма:";
|
|
//
|
|
// comboBoxComputer
|
|
//
|
|
this.comboBoxComputer.FormattingEnabled = true;
|
|
this.comboBoxComputer.Location = new System.Drawing.Point(102, 25);
|
|
this.comboBoxComputer.Name = "comboBoxComputer";
|
|
this.comboBoxComputer.Size = new System.Drawing.Size(249, 23);
|
|
this.comboBoxComputer.TabIndex = 3;
|
|
this.comboBoxComputer.SelectedIndexChanged += new System.EventHandler(this.ComboBoxProduct_SelectedIndexChanged);
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(105, 68);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(246, 23);
|
|
this.textBoxCount.TabIndex = 4;
|
|
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
|
|
//
|
|
// textBoxSum
|
|
//
|
|
this.textBoxSum.Location = new System.Drawing.Point(105, 108);
|
|
this.textBoxSum.Name = "textBoxSum";
|
|
this.textBoxSum.Size = new System.Drawing.Size(246, 23);
|
|
this.textBoxSum.TabIndex = 5;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(274, 137);
|
|
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);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(193, 137);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
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(361, 168);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.textBoxSum);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxComputer);
|
|
this.Controls.Add(this.labelCost);
|
|
this.Controls.Add(this.labelAmount);
|
|
this.Controls.Add(this.labelComputerName);
|
|
this.Name = "FormCreateOrder";
|
|
this.Text = "FormCreateOrder";
|
|
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelComputerName;
|
|
private Label labelAmount;
|
|
private Label labelCost;
|
|
private ComboBox comboBoxComputer;
|
|
private TextBox textBoxCount;
|
|
private TextBox textBoxSum;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |