120 lines
4.8 KiB
C#
120 lines
4.8 KiB
C#
|
namespace JewelryStore
|
|||
|
{
|
|||
|
partial class FormSellJewel
|
|||
|
{
|
|||
|
|
|||
|
/// <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.JewelLabel = new System.Windows.Forms.Label();
|
|||
|
this.QuantityLabel = new System.Windows.Forms.Label();
|
|||
|
this.JewelСomboBox = new System.Windows.Forms.ComboBox();
|
|||
|
this.QuantityTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.SaveButton = new System.Windows.Forms.Button();
|
|||
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// JewelLabel
|
|||
|
//
|
|||
|
this.JewelLabel.AutoSize = true;
|
|||
|
this.JewelLabel.Location = new System.Drawing.Point(12, 18);
|
|||
|
this.JewelLabel.Name = "JewelLabel";
|
|||
|
this.JewelLabel.Size = new System.Drawing.Size(56, 15);
|
|||
|
this.JewelLabel.TabIndex = 0;
|
|||
|
this.JewelLabel.Text = "Изделие:";
|
|||
|
//
|
|||
|
// QuantityLabel
|
|||
|
//
|
|||
|
this.QuantityLabel.AutoSize = true;
|
|||
|
this.QuantityLabel.Location = new System.Drawing.Point(12, 51);
|
|||
|
this.QuantityLabel.Name = "QuantityLabel";
|
|||
|
this.QuantityLabel.Size = new System.Drawing.Size(75, 15);
|
|||
|
this.QuantityLabel.TabIndex = 1;
|
|||
|
this.QuantityLabel.Text = "Количество:";
|
|||
|
//
|
|||
|
// JewelСomboBox
|
|||
|
//
|
|||
|
this.JewelСomboBox.FormattingEnabled = true;
|
|||
|
this.JewelСomboBox.Location = new System.Drawing.Point(88, 15);
|
|||
|
this.JewelСomboBox.Name = "JewelСomboBox";
|
|||
|
this.JewelСomboBox.Size = new System.Drawing.Size(184, 23);
|
|||
|
this.JewelСomboBox.TabIndex = 2;
|
|||
|
//
|
|||
|
// QuantityTextBox
|
|||
|
//
|
|||
|
this.QuantityTextBox.Location = new System.Drawing.Point(88, 48);
|
|||
|
this.QuantityTextBox.Name = "QuantityTextBox";
|
|||
|
this.QuantityTextBox.Size = new System.Drawing.Size(184, 23);
|
|||
|
this.QuantityTextBox.TabIndex = 3;
|
|||
|
//
|
|||
|
// SaveButton
|
|||
|
//
|
|||
|
this.SaveButton.Location = new System.Drawing.Point(72, 100);
|
|||
|
this.SaveButton.Name = "SaveButton";
|
|||
|
this.SaveButton.Size = new System.Drawing.Size(97, 29);
|
|||
|
this.SaveButton.TabIndex = 4;
|
|||
|
this.SaveButton.Text = "Сохранить";
|
|||
|
this.SaveButton.UseVisualStyleBackColor = true;
|
|||
|
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
|
|||
|
//
|
|||
|
// ButtonCancel
|
|||
|
//
|
|||
|
this.ButtonCancel.Location = new System.Drawing.Point(175, 100);
|
|||
|
this.ButtonCancel.Name = "ButtonCancel";
|
|||
|
this.ButtonCancel.Size = new System.Drawing.Size(97, 29);
|
|||
|
this.ButtonCancel.TabIndex = 5;
|
|||
|
this.ButtonCancel.Text = "Отмена";
|
|||
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|||
|
//
|
|||
|
// FromSellJewel
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(284, 141);
|
|||
|
this.Controls.Add(this.ButtonCancel);
|
|||
|
this.Controls.Add(this.SaveButton);
|
|||
|
this.Controls.Add(this.QuantityTextBox);
|
|||
|
this.Controls.Add(this.JewelСomboBox);
|
|||
|
this.Controls.Add(this.QuantityLabel);
|
|||
|
this.Controls.Add(this.JewelLabel);
|
|||
|
this.Name = "FromSellJewel";
|
|||
|
this.Text = "Продать Изделие";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label JewelLabel;
|
|||
|
private Label QuantityLabel;
|
|||
|
private ComboBox JewelСomboBox;
|
|||
|
private TextBox QuantityTextBox;
|
|||
|
private Button SaveButton;
|
|||
|
private Button ButtonCancel;
|
|||
|
}
|
|||
|
}
|