namespace ConfectioneryView { partial class FormCreateOrder { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { labelName = new Label(); labelCount = new Label(); labelSum = new Label(); comboBoxPastry = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelName // labelName.AutoSize = true; labelName.Location = new Point(90, 35); labelName.Name = "labelName"; labelName.Size = new Size(84, 25); labelName.TabIndex = 0; labelName.Text = "Изделие:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(63, 92); labelCount.Name = "labelCount"; labelCount.Size = new Size(111, 25); labelCount.TabIndex = 1; labelCount.Text = "Количество:"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(90, 155); labelSum.Name = "labelSum"; labelSum.Size = new Size(71, 25); labelSum.TabIndex = 2; labelSum.Text = "Сумма:"; // // comboBoxPastry // comboBoxPastry.FormattingEnabled = true; comboBoxPastry.Location = new Point(192, 32); comboBoxPastry.Name = "comboBoxPastry"; comboBoxPastry.Size = new Size(434, 33); comboBoxPastry.TabIndex = 3; comboBoxPastry.SelectedIndexChanged += comboBoxPastry_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(192, 92); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(434, 31); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(192, 155); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(434, 31); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(468, 249); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(112, 49); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранять"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(615, 249); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(112, 49); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormCreateOrder // AutoScaleDimensions = new SizeF(10F, 25F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(779, 333); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPastry); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelName); Name = "FormCreateOrder"; Text = "Создание заказа"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelName; private Label labelCount; private Label labelSum; private ComboBox comboBoxPastry; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; } }