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() { label1 = new Label(); label2 = new Label(); label3 = new Label(); buttonCancel = new Button(); buttonSave = new Button(); comboBoxPastry = new ComboBox(); textBoxCount = new NumericUpDown(); textBoxSum = new TextBox(); label4 = new Label(); comboBoxClient = new ComboBox(); ((System.ComponentModel.ISupportInitialize)textBoxCount).BeginInit(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 9); label1.Name = "label1"; label1.Size = new Size(56, 15); label1.TabIndex = 0; label1.Text = "Изделие:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(12, 40); label2.Name = "label2"; label2.Size = new Size(75, 15); label2.TabIndex = 1; label2.Text = "Количество:"; // // label3 // label3.AutoSize = true; label3.Location = new Point(12, 68); label3.Name = "label3"; label3.Size = new Size(48, 15); label3.TabIndex = 2; label3.Text = "Сумма:"; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonCancel.Location = new Point(221, 133); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(95, 23); buttonCancel.TabIndex = 3; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonSave.Location = new Point(141, 133); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(77, 23); buttonSave.TabIndex = 4; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // comboBoxPastry // comboBoxPastry.FormattingEnabled = true; comboBoxPastry.Location = new Point(101, 9); comboBoxPastry.Name = "comboBoxPastry"; comboBoxPastry.Size = new Size(214, 23); comboBoxPastry.TabIndex = 5; comboBoxPastry.SelectedIndexChanged += ComboBoxPastry_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(101, 38); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(214, 23); textBoxCount.TabIndex = 6; textBoxCount.ValueChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(101, 65); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(214, 23); textBoxSum.TabIndex = 7; // // label4 // label4.AutoSize = true; label4.Location = new Point(12, 99); label4.Name = "label4"; label4.Size = new Size(49, 15); label4.TabIndex = 8; label4.Text = "Клиент:"; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(101, 96); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(215, 23); comboBoxClient.TabIndex = 9; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(327, 168); Controls.Add(comboBoxClient); Controls.Add(label4); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPastry); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormCreateOrder"; Text = "Создание заказа"; ((System.ComponentModel.ISupportInitialize)textBoxCount).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private Button buttonCancel; private Button buttonSave; private ComboBox comboBoxPastry; private NumericUpDown textBoxCount; private TextBox textBoxSum; private Label label4; private ComboBox comboBoxClient; } }