119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
namespace JewelryStore
|
|
{
|
|
partial class FormJewelComponent
|
|
{
|
|
/// <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.comboBoxComponent = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.labelComponent = new System.Windows.Forms.Label();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
this.comboBoxComponent.FormattingEnabled = true;
|
|
this.comboBoxComponent.Location = new System.Drawing.Point(148, 10);
|
|
this.comboBoxComponent.Name = "comboBoxComponent";
|
|
this.comboBoxComponent.Size = new System.Drawing.Size(182, 33);
|
|
this.comboBoxComponent.TabIndex = 0;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(150, 53);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(150, 31);
|
|
this.textBoxCount.TabIndex = 1;
|
|
//
|
|
// labelComponent
|
|
//
|
|
this.labelComponent.AutoSize = true;
|
|
this.labelComponent.Location = new System.Drawing.Point(16, 18);
|
|
this.labelComponent.Name = "labelComponent";
|
|
this.labelComponent.Size = new System.Drawing.Size(103, 25);
|
|
this.labelComponent.TabIndex = 2;
|
|
this.labelComponent.Text = "Компонент";
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(16, 57);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(112, 25);
|
|
this.labelCount.TabIndex = 3;
|
|
this.labelCount.Text = "Количество ";
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(75, 99);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(112, 34);
|
|
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(206, 99);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(112, 34);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отменить";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// FormJewelComponent
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(426, 142);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.labelComponent);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxComponent);
|
|
this.Name = "FormJewelComponent";
|
|
this.Text = "Компонент драгоценности";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCount;
|
|
private Label labelComponent;
|
|
private Label labelCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |