126 lines
5.3 KiB
C#
126 lines
5.3 KiB
C#
namespace PlumbingRepairView
|
|
{
|
|
partial class FormSellWorks
|
|
{
|
|
/// <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.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSell = new System.Windows.Forms.Button();
|
|
this.comboBoxWork = new System.Windows.Forms.ComboBox();
|
|
this.labelWork = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(137, 103);
|
|
this.textBoxCount.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(183, 31);
|
|
this.textBoxCount.TabIndex = 13;
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(14, 103);
|
|
this.labelCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(111, 25);
|
|
this.labelCount.TabIndex = 12;
|
|
this.labelCount.Text = "Количество:";
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(361, 156);
|
|
this.buttonCancel.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(126, 45);
|
|
this.buttonCancel.TabIndex = 15;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// buttonSell
|
|
//
|
|
this.buttonSell.Location = new System.Drawing.Point(225, 156);
|
|
this.buttonSell.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
|
|
this.buttonSell.Name = "buttonSell";
|
|
this.buttonSell.Size = new System.Drawing.Size(126, 45);
|
|
this.buttonSell.TabIndex = 14;
|
|
this.buttonSell.Text = "Продать";
|
|
this.buttonSell.UseVisualStyleBackColor = true;
|
|
this.buttonSell.Click += new System.EventHandler(this.ButtonSale_Click);
|
|
//
|
|
// comboBoxWork
|
|
//
|
|
this.comboBoxWork.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxWork.FormattingEnabled = true;
|
|
this.comboBoxWork.Location = new System.Drawing.Point(137, 33);
|
|
this.comboBoxWork.Name = "comboBoxWork";
|
|
this.comboBoxWork.Size = new System.Drawing.Size(317, 33);
|
|
this.comboBoxWork.TabIndex = 16;
|
|
//
|
|
// labelWork
|
|
//
|
|
this.labelWork.AutoSize = true;
|
|
this.labelWork.Location = new System.Drawing.Point(14, 36);
|
|
this.labelWork.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
|
|
this.labelWork.Name = "labelWork";
|
|
this.labelWork.Size = new System.Drawing.Size(72, 25);
|
|
this.labelWork.TabIndex = 17;
|
|
this.labelWork.Text = "Работа:";
|
|
//
|
|
// FormSellWorks
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(493, 207);
|
|
this.Controls.Add(this.labelWork);
|
|
this.Controls.Add(this.comboBoxWork);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSell);
|
|
this.Name = "FormSellWorks";
|
|
this.Text = "Продажа работ";
|
|
this.Load += new System.EventHandler(this.FormSellWorks_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxCount;
|
|
private Label labelCount;
|
|
private Button buttonCancel;
|
|
private Button buttonSell;
|
|
private ComboBox comboBoxWork;
|
|
private Label labelWork;
|
|
}
|
|
} |