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() { labelPastry = new Label(); labelCount = new Label(); labelSum = new Label(); comboBoxPastry = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); comboBoxClient = new ComboBox(); labelClient = new Label(); SuspendLayout(); // // labelPastry // labelPastry.AutoSize = true; labelPastry.Location = new Point(25, 16); labelPastry.Name = "labelPastry"; labelPastry.Size = new Size(71, 20); labelPastry.TabIndex = 0; labelPastry.Text = "Изделие:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 102); labelCount.Name = "labelCount"; labelCount.Size = new Size(93, 20); labelCount.TabIndex = 1; labelCount.Text = "Количество:"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(25, 141); labelSum.Name = "labelSum"; labelSum.Size = new Size(58, 20); labelSum.TabIndex = 2; labelSum.Text = "Сумма:"; // // comboBoxPastry // comboBoxPastry.FormattingEnabled = true; comboBoxPastry.Location = new Point(114, 13); comboBoxPastry.Margin = new Padding(3, 4, 3, 4); comboBoxPastry.Name = "comboBoxPastry"; comboBoxPastry.Size = new Size(261, 28); comboBoxPastry.TabIndex = 3; comboBoxPastry.SelectedIndexChanged += comboBoxPastry_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(114, 99); textBoxCount.Margin = new Padding(3, 4, 3, 4); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(261, 27); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(114, 141); textBoxSum.Margin = new Padding(3, 4, 3, 4); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(261, 27); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(192, 176); buttonSave.Margin = new Padding(3, 4, 3, 4); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(93, 33); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(302, 176); buttonCancel.Margin = new Padding(3, 4, 3, 4); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(73, 33); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(114, 59); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(261, 28); comboBoxClient.TabIndex = 8; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(25, 62); labelClient.Name = "labelClient"; labelClient.Size = new Size(61, 20); labelClient.TabIndex = 9; labelClient.Text = "Клиент:"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(422, 222); Controls.Add(labelClient); Controls.Add(comboBoxClient); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPastry); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelPastry); Margin = new Padding(3, 4, 3, 4); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPastry; private Label labelCount; private Label labelSum; private ComboBox comboBoxPastry; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private ComboBox comboBoxClient; private Label labelClient; } }