119 lines
4.7 KiB
C#
Raw Normal View History

2023-03-09 14:41:50 +04:00
namespace PlumbingRepairView
2023-02-22 11:21:36 +04:00
{
2023-03-09 14:41:50 +04:00
partial class FormWorkComponent
2023-02-22 11:21:36 +04:00
{
/// <summary>
2023-03-09 14:41:50 +04:00
/// Required designer variable.
2023-02-22 11:21:36 +04:00
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
2023-03-09 14:41:50 +04:00
/// Clean up any resources being used.
2023-02-22 11:21:36 +04:00
/// </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>
2023-03-09 14:41:50 +04:00
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
2023-02-22 11:21:36 +04:00
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
2023-03-09 14:41:50 +04:00
this.comboBoxComponent = new System.Windows.Forms.ComboBox();
this.textBoxCount = new System.Windows.Forms.TextBox();
2023-02-22 11:21:36 +04:00
this.buttonCancel = new System.Windows.Forms.Button();
2023-03-09 14:41:50 +04:00
this.buttonSave = new System.Windows.Forms.Button();
2023-02-22 11:21:36 +04:00
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
2023-03-09 14:41:50 +04:00
this.label1.Location = new System.Drawing.Point(20, 22);
2023-02-22 11:21:36 +04:00
this.label1.Name = "label1";
2023-03-09 14:41:50 +04:00
this.label1.Size = new System.Drawing.Size(91, 20);
2023-02-22 11:21:36 +04:00
this.label1.TabIndex = 0;
2023-03-09 14:41:50 +04:00
this.label1.Text = "Компонент:";
2023-02-22 11:21:36 +04:00
//
// label2
//
this.label2.AutoSize = true;
2023-03-09 14:41:50 +04:00
this.label2.Location = new System.Drawing.Point(20, 71);
2023-02-22 11:21:36 +04:00
this.label2.Name = "label2";
2023-03-09 14:41:50 +04:00
this.label2.Size = new System.Drawing.Size(93, 20);
2023-02-22 11:21:36 +04:00
this.label2.TabIndex = 1;
2023-03-09 14:41:50 +04:00
this.label2.Text = "Количество:";
2023-02-22 11:21:36 +04:00
//
2023-03-09 14:41:50 +04:00
// comboBoxComponent
2023-02-22 11:21:36 +04:00
//
2023-03-09 14:41:50 +04:00
this.comboBoxComponent.FormattingEnabled = true;
this.comboBoxComponent.Location = new System.Drawing.Point(149, 19);
this.comboBoxComponent.Name = "comboBoxComponent";
this.comboBoxComponent.Size = new System.Drawing.Size(288, 28);
this.comboBoxComponent.TabIndex = 2;
2023-02-22 11:21:36 +04:00
//
2023-03-09 14:41:50 +04:00
// textBoxCount
2023-02-22 11:21:36 +04:00
//
2023-03-09 14:41:50 +04:00
this.textBoxCount.Location = new System.Drawing.Point(149, 71);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(288, 27);
this.textBoxCount.TabIndex = 3;
2023-02-22 11:21:36 +04:00
//
// buttonCancel
//
2023-03-09 14:41:50 +04:00
this.buttonCancel.Location = new System.Drawing.Point(330, 117);
2023-02-22 11:21:36 +04:00
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(94, 29);
2023-03-09 14:41:50 +04:00
this.buttonCancel.TabIndex = 4;
2023-02-22 11:21:36 +04:00
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
2023-03-09 14:41:50 +04:00
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(230, 117);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(94, 29);
this.buttonSave.TabIndex = 5;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
2023-02-22 11:21:36 +04:00
//
2023-03-09 14:41:50 +04:00
// FormWorkComponent
2023-02-22 11:21:36 +04:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-03-09 14:41:50 +04:00
this.ClientSize = new System.Drawing.Size(460, 161);
2023-02-22 11:21:36 +04:00
this.Controls.Add(this.buttonSave);
2023-03-09 14:41:50 +04:00
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.comboBoxComponent);
2023-02-22 11:21:36 +04:00
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
2023-03-09 14:41:50 +04:00
this.Name = "FormWorkComponent";
this.Text = "Компонент работы";
2023-02-22 11:21:36 +04:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private Label label2;
2023-03-09 14:41:50 +04:00
private ComboBox comboBoxComponent;
private TextBox textBoxCount;
2023-02-22 11:21:36 +04:00
private Button buttonCancel;
2023-03-09 14:41:50 +04:00
private Button buttonSave;
2023-02-22 11:21:36 +04:00
}
}