namespace RestaurantApp { partial class OrderItemEditForm { private System.ComponentModel.IContainer components = null; protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { this.lblDish = new System.Windows.Forms.Label(); this.lblDishName = new System.Windows.Forms.Label(); this.lblQuantity = new System.Windows.Forms.Label(); this.numQuantity = new System.Windows.Forms.NumericUpDown(); this.lblStatus = new System.Windows.Forms.Label(); this.cmbStatus = new System.Windows.Forms.ComboBox(); this.lblNotes = new System.Windows.Forms.Label(); this.txtNotes = new System.Windows.Forms.TextBox(); this.btnSave = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).BeginInit(); this.SuspendLayout(); // // lblDish // this.lblDish.AutoSize = true; this.lblDish.Location = new System.Drawing.Point(30, 30); this.lblDish.Name = "lblDish"; this.lblDish.Size = new System.Drawing.Size(43, 13); this.lblDish.TabIndex = 0; this.lblDish.Text = "Блюдо:"; // // lblDishName // this.lblDishName.AutoSize = true; this.lblDishName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold); this.lblDishName.Location = new System.Drawing.Point(120, 30); this.lblDishName.Name = "lblDishName"; this.lblDishName.Size = new System.Drawing.Size(65, 13); this.lblDishName.TabIndex = 1; this.lblDishName.Text = "Название"; // // lblQuantity // this.lblQuantity.AutoSize = true; this.lblQuantity.Location = new System.Drawing.Point(30, 65); this.lblQuantity.Name = "lblQuantity"; this.lblQuantity.Size = new System.Drawing.Size(69, 13); this.lblQuantity.TabIndex = 2; this.lblQuantity.Text = "Количество:"; // // numQuantity // this.numQuantity.Location = new System.Drawing.Point(120, 63); this.numQuantity.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.numQuantity.Name = "numQuantity"; this.numQuantity.Size = new System.Drawing.Size(100, 20); this.numQuantity.TabIndex = 3; this.numQuantity.Value = new decimal(new int[] { 1, 0, 0, 0}); // // lblStatus // this.lblStatus.AutoSize = true; this.lblStatus.Location = new System.Drawing.Point(30, 100); this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(44, 13); this.lblStatus.TabIndex = 4; this.lblStatus.Text = "Статус:"; // // cmbStatus // this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Items.AddRange(new object[] { "ordered", "cooking", "ready", "served", "cancelled"}); this.cmbStatus.Location = new System.Drawing.Point(120, 97); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.Size = new System.Drawing.Size(150, 21); this.cmbStatus.TabIndex = 5; // // lblNotes // this.lblNotes.AutoSize = true; this.lblNotes.Location = new System.Drawing.Point(30, 135); this.lblNotes.Name = "lblNotes"; this.lblNotes.Size = new System.Drawing.Size(73, 13); this.lblNotes.TabIndex = 6; this.lblNotes.Text = "Примечание:"; // // txtNotes // this.txtNotes.Location = new System.Drawing.Point(120, 132); this.txtNotes.Multiline = true; this.txtNotes.Name = "txtNotes"; this.txtNotes.Size = new System.Drawing.Size(250, 60); this.txtNotes.TabIndex = 7; // // btnSave // this.btnSave.BackColor = System.Drawing.Color.LimeGreen; this.btnSave.Location = new System.Drawing.Point(120, 210); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(100, 30); this.btnSave.TabIndex = 8; this.btnSave.Text = "Сохранить"; this.btnSave.UseVisualStyleBackColor = false; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(240, 210); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(100, 30); this.btnCancel.TabIndex = 9; this.btnCancel.Text = "Отмена"; this.btnCancel.UseVisualStyleBackColor = true; // // OrderItemEditForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(400, 270); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnSave); this.Controls.Add(this.txtNotes); this.Controls.Add(this.lblNotes); this.Controls.Add(this.cmbStatus); this.Controls.Add(this.lblStatus); this.Controls.Add(this.numQuantity); this.Controls.Add(this.lblQuantity); this.Controls.Add(this.lblDishName); this.Controls.Add(this.lblDish); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "OrderItemEditForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Редактирование позиции"; ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Label lblDish; private System.Windows.Forms.Label lblDishName; private System.Windows.Forms.Label lblQuantity; private System.Windows.Forms.NumericUpDown numQuantity; private System.Windows.Forms.Label lblStatus; private System.Windows.Forms.ComboBox cmbStatus; private System.Windows.Forms.Label lblNotes; private System.Windows.Forms.TextBox txtNotes; private System.Windows.Forms.Button btnSave; private System.Windows.Forms.Button btnCancel; } }