121 lines
5.1 KiB
C#
121 lines
5.1 KiB
C#
namespace CarRepairShopView
|
|
{
|
|
partial class FormRepairComponent
|
|
{
|
|
/// <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.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.labelComponent = new System.Windows.Forms.Label();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.comboBoxComponent = new System.Windows.Forms.ComboBox();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(218, 59);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(137, 59);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 4;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// labelComponent
|
|
//
|
|
this.labelComponent.AutoSize = true;
|
|
this.labelComponent.Location = new System.Drawing.Point(12, 9);
|
|
this.labelComponent.Name = "labelComponent";
|
|
this.labelComponent.Size = new System.Drawing.Size(66, 13);
|
|
this.labelComponent.TabIndex = 0;
|
|
this.labelComponent.Text = "Компонент:";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(87, 33);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(217, 20);
|
|
this.textBoxCount.TabIndex = 3;
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
this.comboBoxComponent.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxComponent.FormattingEnabled = true;
|
|
this.comboBoxComponent.Location = new System.Drawing.Point(87, 6);
|
|
this.comboBoxComponent.Name = "comboBoxComponent";
|
|
this.comboBoxComponent.Size = new System.Drawing.Size(217, 21);
|
|
this.comboBoxComponent.TabIndex = 1;
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(12, 36);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(69, 13);
|
|
this.labelCount.TabIndex = 2;
|
|
this.labelCount.Text = "Количество:";
|
|
//
|
|
// FormRepairComponent
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(320, 96);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.comboBoxComponent);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.labelComponent);
|
|
this.Name = "FormRepairComponent";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Компонент ремонта";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button buttonSave;
|
|
private System.Windows.Forms.Label labelComponent;
|
|
private System.Windows.Forms.TextBox textBoxCount;
|
|
private System.Windows.Forms.ComboBox comboBoxComponent;
|
|
private System.Windows.Forms.Label labelCount;
|
|
}
|
|
} |