170 lines
6.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SoftwareInstallationView
{
partial class FormCreateOrder
{
/// <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.PackageNameLabel = new System.Windows.Forms.Label();
this.CountLabel = new System.Windows.Forms.Label();
this.SumLabel = new System.Windows.Forms.Label();
this.PackageComboBox = new System.Windows.Forms.ComboBox();
this.CountTextBox = new System.Windows.Forms.TextBox();
this.SumTextBox = new System.Windows.Forms.TextBox();
this.ButtonCancel = new System.Windows.Forms.Button();
this.SaveButton = new System.Windows.Forms.Button();
this.ClientComboBox = new System.Windows.Forms.ComboBox();
this.ClientLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// PackageNameLabel
//
this.PackageNameLabel.AutoSize = true;
this.PackageNameLabel.Location = new System.Drawing.Point(12, 9);
this.PackageNameLabel.Name = "PackageNameLabel";
this.PackageNameLabel.Size = new System.Drawing.Size(59, 15);
this.PackageNameLabel.TabIndex = 0;
this.PackageNameLabel.Text = "Изделие: ";
//
// CountLabel
//
this.CountLabel.AutoSize = true;
this.CountLabel.Location = new System.Drawing.Point(12, 79);
this.CountLabel.Name = "CountLabel";
this.CountLabel.Size = new System.Drawing.Size(78, 15);
this.CountLabel.TabIndex = 1;
this.CountLabel.Text = "Количество: ";
//
// SumLabel
//
this.SumLabel.AutoSize = true;
this.SumLabel.Location = new System.Drawing.Point(12, 112);
this.SumLabel.Name = "SumLabel";
this.SumLabel.Size = new System.Drawing.Size(51, 15);
this.SumLabel.TabIndex = 2;
this.SumLabel.Text = "Сумма: ";
//
// PackageComboBox
//
this.PackageComboBox.DisplayMember = "Изделие 1";
this.PackageComboBox.FormattingEnabled = true;
this.PackageComboBox.Items.AddRange(new object[] {
"Изделие1"});
this.PackageComboBox.Location = new System.Drawing.Point(93, 6);
this.PackageComboBox.Name = "PackageComboBox";
this.PackageComboBox.Size = new System.Drawing.Size(201, 23);
this.PackageComboBox.TabIndex = 3;
this.PackageComboBox.ValueMember = "1";
this.PackageComboBox.SelectedIndexChanged += new System.EventHandler(this.PackageComboBox_SelectedIndexChanged);
//
// CountTextBox
//
this.CountTextBox.Location = new System.Drawing.Point(93, 76);
this.CountTextBox.Name = "CountTextBox";
this.CountTextBox.Size = new System.Drawing.Size(201, 23);
this.CountTextBox.TabIndex = 4;
this.CountTextBox.TextChanged += new System.EventHandler(this.CountTextBox_TextChanged);
//
// SumTextBox
//
this.SumTextBox.Location = new System.Drawing.Point(93, 109);
this.SumTextBox.Name = "SumTextBox";
this.SumTextBox.Size = new System.Drawing.Size(201, 23);
this.SumTextBox.TabIndex = 5;
//
// ButtonCancel
//
this.ButtonCancel.Location = new System.Drawing.Point(219, 141);
this.ButtonCancel.Name = "ButtonCancel";
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
this.ButtonCancel.TabIndex = 6;
this.ButtonCancel.Text = "Отменить";
this.ButtonCancel.UseVisualStyleBackColor = true;
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// SaveButton
//
this.SaveButton.Location = new System.Drawing.Point(138, 141);
this.SaveButton.Name = "SaveButton";
this.SaveButton.Size = new System.Drawing.Size(75, 23);
this.SaveButton.TabIndex = 7;
this.SaveButton.Text = "Сохранить";
this.SaveButton.UseVisualStyleBackColor = true;
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
//
// ClientComboBox
//
this.ClientComboBox.FormattingEnabled = true;
this.ClientComboBox.Location = new System.Drawing.Point(93, 41);
this.ClientComboBox.Name = "ClientComboBox";
this.ClientComboBox.Size = new System.Drawing.Size(201, 23);
this.ClientComboBox.TabIndex = 10;
//
// ClientLabel
//
this.ClientLabel.AutoSize = true;
this.ClientLabel.Location = new System.Drawing.Point(13, 46);
this.ClientLabel.Name = "ClientLabel";
this.ClientLabel.Size = new System.Drawing.Size(52, 15);
this.ClientLabel.TabIndex = 11;
this.ClientLabel.Text = "Клиент: ";
//
// FormCreateOrder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(309, 192);
this.Controls.Add(this.ClientLabel);
this.Controls.Add(this.ClientComboBox);
this.Controls.Add(this.SaveButton);
this.Controls.Add(this.ButtonCancel);
this.Controls.Add(this.SumTextBox);
this.Controls.Add(this.CountTextBox);
this.Controls.Add(this.PackageComboBox);
this.Controls.Add(this.SumLabel);
this.Controls.Add(this.CountLabel);
this.Controls.Add(this.PackageNameLabel);
this.Name = "FormCreateOrder";
this.Text = "Заказ";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label PackageNameLabel;
private Label CountLabel;
private Label SumLabel;
private ComboBox PackageComboBox;
private TextBox CountTextBox;
private TextBox SumTextBox;
private Button ButtonCancel;
private Button SaveButton;
private ComboBox ClientComboBox;
private Label ClientLabel;
}
}