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() { labelPackage = new Label(); comboBoxPackage = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); labelSum = new Label(); textBoxSum = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); SuspendLayout(); // // labelPackage // labelPackage.AutoSize = true; labelPackage.Location = new Point(10, 11); labelPackage.Name = "labelPackage"; labelPackage.Size = new Size(39, 15); labelPackage.TabIndex = 0; labelPackage.Text = "Пакет"; // // comboBoxPackage // comboBoxPackage.FormattingEnabled = true; comboBoxPackage.Location = new Point(101, 9); comboBoxPackage.Margin = new Padding(3, 2, 3, 2); comboBoxPackage.Name = "comboBoxPackage"; comboBoxPackage.Size = new Size(314, 23); comboBoxPackage.TabIndex = 1; comboBoxPackage.SelectedIndexChanged += ComboBoxPackage_SelectedIndexChanged; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(10, 37); labelCount.Name = "labelCount"; labelCount.Size = new Size(78, 15); labelCount.TabIndex = 2; labelCount.Text = "Количество: "; // // textBoxCount // textBoxCount.Location = new Point(101, 34); textBoxCount.Margin = new Padding(3, 2, 3, 2); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(314, 23); textBoxCount.TabIndex = 3; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(10, 60); labelSum.Name = "labelSum"; labelSum.Size = new Size(51, 15); labelSum.TabIndex = 4; labelSum.Text = "Сумма: "; // // textBoxSum // textBoxSum.Location = new Point(101, 60); textBoxSum.Margin = new Padding(3, 2, 3, 2); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(314, 23); textBoxSum.TabIndex = 5; // // buttonCancel // buttonCancel.Location = new Point(295, 85); buttonCancel.Margin = new Padding(3, 2, 3, 2); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(96, 24); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(193, 85); buttonSave.Margin = new Padding(3, 2, 3, 2); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(96, 24); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(424, 118); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(textBoxSum); Controls.Add(labelSum); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxPackage); Controls.Add(labelPackage); Margin = new Padding(3, 2, 3, 2); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPackage; private ComboBox comboBoxPackage; private Label labelCount; private TextBox textBoxCount; private Label labelSum; private TextBox textBoxSum; private Button buttonCancel; private Button buttonSave; } }