120 lines
4.9 KiB
C#
120 lines
4.9 KiB
C#
namespace ComputersShop
|
|
{
|
|
partial class FormComputerComponent
|
|
{
|
|
/// <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.labelName = new System.Windows.Forms.Label();
|
|
this.labelAmount = new System.Windows.Forms.Label();
|
|
this.comboBoxComponent = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
this.labelName.AutoSize = true;
|
|
this.labelName.Location = new System.Drawing.Point(12, 28);
|
|
this.labelName.Name = "labelName";
|
|
this.labelName.Size = new System.Drawing.Size(72, 15);
|
|
this.labelName.TabIndex = 0;
|
|
this.labelName.Text = "Компонент:";
|
|
//
|
|
// labelAmount
|
|
//
|
|
this.labelAmount.AutoSize = true;
|
|
this.labelAmount.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.labelAmount.Location = new System.Drawing.Point(12, 74);
|
|
this.labelAmount.Name = "labelAmount";
|
|
this.labelAmount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelAmount.TabIndex = 1;
|
|
this.labelAmount.Text = "Количество:";
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
this.comboBoxComponent.FormattingEnabled = true;
|
|
this.comboBoxComponent.Location = new System.Drawing.Point(93, 25);
|
|
this.comboBoxComponent.Name = "comboBoxComponent";
|
|
this.comboBoxComponent.Size = new System.Drawing.Size(195, 23);
|
|
this.comboBoxComponent.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(93, 74);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(195, 23);
|
|
this.textBoxCount.TabIndex = 3;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(272, 106);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 4;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(191, 106);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 5;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// FormComputerComponent
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(359, 141);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxComponent);
|
|
this.Controls.Add(this.labelAmount);
|
|
this.Controls.Add(this.labelName);
|
|
this.Name = "FormComputerComponent";
|
|
this.Text = "FormComputerComponent";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private Label labelAmount;
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCount;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |