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() { this.buttonCancel = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.textBoxSum = new System.Windows.Forms.TextBox(); this.textBoxCount = new System.Windows.Forms.TextBox(); this.comboBoxSweets = new System.Windows.Forms.ComboBox(); this.labelSum = new System.Windows.Forms.Label(); this.labelCount = new System.Windows.Forms.Label(); this.labelName = new System.Windows.Forms.Label(); this.SuspendLayout(); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(241, 90); this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(82, 22); this.buttonCancel.TabIndex = 15; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(153, 90); this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(82, 22); this.buttonSave.TabIndex = 14; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // textBoxSum // this.textBoxSum.Location = new System.Drawing.Point(93, 63); this.textBoxSum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.textBoxSum.Name = "textBoxSum"; this.textBoxSum.Size = new System.Drawing.Size(230, 23); this.textBoxSum.TabIndex = 13; // // textBoxCount // this.textBoxCount.Location = new System.Drawing.Point(93, 36); this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.textBoxCount.Name = "textBoxCount"; this.textBoxCount.Size = new System.Drawing.Size(230, 23); this.textBoxCount.TabIndex = 12; this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged); // // comboBoxSweets // this.comboBoxSweets.FormattingEnabled = true; this.comboBoxSweets.Location = new System.Drawing.Point(93, 9); this.comboBoxSweets.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.comboBoxSweets.Name = "comboBoxSweets"; this.comboBoxSweets.Size = new System.Drawing.Size(230, 23); this.comboBoxSweets.TabIndex = 11; this.comboBoxSweets.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSweets_SelectedIndexChanged); // // labelSum // this.labelSum.AutoSize = true; this.labelSum.Location = new System.Drawing.Point(12, 63); this.labelSum.Name = "labelSum"; this.labelSum.Size = new System.Drawing.Size(48, 15); this.labelSum.TabIndex = 10; this.labelSum.Text = "Сумма:"; // // labelCount // this.labelCount.AutoSize = true; this.labelCount.Location = new System.Drawing.Point(12, 36); this.labelCount.Name = "labelCount"; this.labelCount.Size = new System.Drawing.Size(75, 15); this.labelCount.TabIndex = 9; this.labelCount.Text = "Количество:"; // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(12, 9); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(62, 15); this.labelName.TabIndex = 8; this.labelName.Text = "Сладости:"; // // FormCreateOrder // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(343, 128); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.textBoxSum); this.Controls.Add(this.textBoxCount); this.Controls.Add(this.comboBoxSweets); this.Controls.Add(this.labelSum); this.Controls.Add(this.labelCount); this.Controls.Add(this.labelName); this.Name = "FormCreateOrder"; this.Text = "Заказ"; this.Load += new System.EventHandler(this.FormCreateOrder_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Button buttonCancel; private Button buttonSave; private TextBox textBoxSum; private TextBox textBoxCount; private ComboBox comboBoxSweets; private Label labelSum; private Label labelCount; private Label labelName; } }