namespace PizzeriaView { 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() { comboBoxPizza = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); labelPizza = new Label(); labelCount = new Label(); labelSum = new Label(); SuspendLayout(); // // comboBoxPizza // comboBoxPizza.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPizza.FormattingEnabled = true; comboBoxPizza.Location = new Point(166, 25); comboBoxPizza.Name = "comboBoxPizza"; comboBoxPizza.Size = new Size(274, 33); comboBoxPizza.TabIndex = 0; // // textBoxCount // textBoxCount.Location = new Point(166, 71); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(274, 31); textBoxCount.TabIndex = 1; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(166, 120); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(274, 31); textBoxSum.TabIndex = 2; textBoxSum.TextChanged += textBoxSum_TextChanged; // // buttonSave // buttonSave.Location = new Point(166, 208); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(114, 46); buttonSave.TabIndex = 3; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(313, 208); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(153, 46); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // labelPizza // labelPizza.AutoSize = true; labelPizza.Location = new Point(37, 25); labelPizza.Name = "labelPizza"; labelPizza.Size = new Size(80, 25); labelPizza.TabIndex = 5; labelPizza.Text = "Изделие"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(37, 77); labelCount.Name = "labelCount"; labelCount.Size = new Size(107, 25); labelCount.TabIndex = 6; labelCount.Text = "Количество"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(37, 126); labelSum.Name = "labelSum"; labelSum.Size = new Size(67, 25); labelSum.TabIndex = 7; labelSum.Text = "Сумма"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(10F, 25F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(507, 283); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelPizza); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPizza); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private ComboBox comboBoxPizza; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private Label labelPizza; private Label labelCount; private Label labelSum; } }