119 lines
4.7 KiB
C#
119 lines
4.7 KiB
C#
|
namespace JewelryStore
|
|||
|
{
|
|||
|
partial class FormComponent
|
|||
|
{
|
|||
|
/// <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.buttonSave = new System.Windows.Forms.Button();
|
|||
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|||
|
this.labelName = new System.Windows.Forms.Label();
|
|||
|
this.labelCost = new System.Windows.Forms.Label();
|
|||
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxCost = new System.Windows.Forms.TextBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
this.buttonSave.Location = new System.Drawing.Point(554, 353);
|
|||
|
this.buttonSave.Name = "buttonSave";
|
|||
|
this.buttonSave.Size = new System.Drawing.Size(112, 34);
|
|||
|
this.buttonSave.TabIndex = 0;
|
|||
|
this.buttonSave.Text = "Сохранить";
|
|||
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|||
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
this.buttonCancel.Location = new System.Drawing.Point(676, 353);
|
|||
|
this.buttonCancel.Name = "buttonCancel";
|
|||
|
this.buttonCancel.Size = new System.Drawing.Size(112, 34);
|
|||
|
this.buttonCancel.TabIndex = 1;
|
|||
|
this.buttonCancel.Text = "Отмена";
|
|||
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|||
|
//
|
|||
|
// labelName
|
|||
|
//
|
|||
|
this.labelName.AutoSize = true;
|
|||
|
this.labelName.Location = new System.Drawing.Point(90, 113);
|
|||
|
this.labelName.Name = "labelName";
|
|||
|
this.labelName.Size = new System.Drawing.Size(94, 25);
|
|||
|
this.labelName.TabIndex = 2;
|
|||
|
this.labelName.Text = "Название:";
|
|||
|
//
|
|||
|
// labelCost
|
|||
|
//
|
|||
|
this.labelCost.AutoSize = true;
|
|||
|
this.labelCost.Location = new System.Drawing.Point(90, 160);
|
|||
|
this.labelCost.Name = "labelCost";
|
|||
|
this.labelCost.Size = new System.Drawing.Size(57, 25);
|
|||
|
this.labelCost.TabIndex = 3;
|
|||
|
this.labelCost.Text = "Цена:";
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
this.textBoxName.Location = new System.Drawing.Point(212, 113);
|
|||
|
this.textBoxName.Name = "textBoxName";
|
|||
|
this.textBoxName.Size = new System.Drawing.Size(150, 31);
|
|||
|
this.textBoxName.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxCost
|
|||
|
//
|
|||
|
this.textBoxCost.Location = new System.Drawing.Point(212, 160);
|
|||
|
this.textBoxCost.Name = "textBoxCost";
|
|||
|
this.textBoxCost.Size = new System.Drawing.Size(150, 31);
|
|||
|
this.textBoxCost.TabIndex = 5;
|
|||
|
//
|
|||
|
// FormComponent
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
this.Controls.Add(this.textBoxCost);
|
|||
|
this.Controls.Add(this.textBoxName);
|
|||
|
this.Controls.Add(this.labelCost);
|
|||
|
this.Controls.Add(this.labelName);
|
|||
|
this.Controls.Add(this.buttonCancel);
|
|||
|
this.Controls.Add(this.buttonSave);
|
|||
|
this.Name = "FormComponent";
|
|||
|
this.Text = "Компонент";
|
|||
|
this.Load += new System.EventHandler(this.FormComponent_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
private Label labelName;
|
|||
|
private Label labelCost;
|
|||
|
private TextBox textBoxName;
|
|||
|
private TextBox textBoxCost;
|
|||
|
}
|
|||
|
}
|