namespace RestaurantApp { partial class DishEditForm { 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.lblCategory = new System.Windows.Forms.Label(); this.cmbCategory = new System.Windows.Forms.ComboBox(); this.lblName = new System.Windows.Forms.Label(); this.txtName = new System.Windows.Forms.TextBox(); this.lblDescription = new System.Windows.Forms.Label(); this.txtDescription = new System.Windows.Forms.TextBox(); this.lblPrice = new System.Windows.Forms.Label(); this.numPrice = new System.Windows.Forms.NumericUpDown(); this.lblWeight = new System.Windows.Forms.Label(); this.numWeight = new System.Windows.Forms.NumericUpDown(); this.lblCookTime = new System.Windows.Forms.Label(); this.numCookTime = new System.Windows.Forms.NumericUpDown(); this.chkAvailable = new System.Windows.Forms.CheckBox(); this.btnSave = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.numPrice)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numWeight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numCookTime)).BeginInit(); this.SuspendLayout(); // // lblCategory // this.lblCategory.AutoSize = true; this.lblCategory.Location = new System.Drawing.Point(30, 25); this.lblCategory.Name = "lblCategory"; this.lblCategory.Size = new System.Drawing.Size(63, 13); this.lblCategory.TabIndex = 0; this.lblCategory.Text = "Категория:"; // // cmbCategory // this.cmbCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategory.Location = new System.Drawing.Point(120, 22); this.cmbCategory.Name = "cmbCategory"; this.cmbCategory.Size = new System.Drawing.Size(250, 21); this.cmbCategory.TabIndex = 1; // // lblName // this.lblName.AutoSize = true; this.lblName.Location = new System.Drawing.Point(30, 55); this.lblName.Name = "lblName"; this.lblName.Size = new System.Drawing.Size(60, 13); this.lblName.TabIndex = 2; this.lblName.Text = "Название:"; // // txtName // this.txtName.Location = new System.Drawing.Point(120, 52); this.txtName.Name = "txtName"; this.txtName.Size = new System.Drawing.Size(250, 20); this.txtName.TabIndex = 3; // // lblDescription // this.lblDescription.AutoSize = true; this.lblDescription.Location = new System.Drawing.Point(30, 85); this.lblDescription.Name = "lblDescription"; this.lblDescription.Size = new System.Drawing.Size(60, 13); this.lblDescription.TabIndex = 4; this.lblDescription.Text = "Описание:"; // // txtDescription // this.txtDescription.Location = new System.Drawing.Point(120, 82); this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.Size = new System.Drawing.Size(250, 60); this.txtDescription.TabIndex = 5; // // lblPrice // this.lblPrice.AutoSize = true; this.lblPrice.Location = new System.Drawing.Point(30, 155); this.lblPrice.Name = "lblPrice"; this.lblPrice.Size = new System.Drawing.Size(36, 13); this.lblPrice.TabIndex = 6; this.lblPrice.Text = "Цена:"; // // numPrice // this.numPrice.DecimalPlaces = 2; this.numPrice.Location = new System.Drawing.Point(120, 153); this.numPrice.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); this.numPrice.Name = "numPrice"; this.numPrice.Size = new System.Drawing.Size(120, 20); this.numPrice.TabIndex = 7; // // lblWeight // this.lblWeight.AutoSize = true; this.lblWeight.Location = new System.Drawing.Point(30, 185); this.lblWeight.Name = "lblWeight"; this.lblWeight.Size = new System.Drawing.Size(57, 13); this.lblWeight.TabIndex = 8; this.lblWeight.Text = "Вес (г):"; // // numWeight // this.numWeight.Location = new System.Drawing.Point(120, 183); this.numWeight.Maximum = new decimal(new int[] { 10000, 0, 0, 0 }); this.numWeight.Name = "numWeight"; this.numWeight.Size = new System.Drawing.Size(120, 20); this.numWeight.TabIndex = 9; // // lblCookTime // this.lblCookTime.AutoSize = true; this.lblCookTime.Location = new System.Drawing.Point(30, 215); this.lblCookTime.Name = "lblCookTime"; this.lblCookTime.Size = new System.Drawing.Size(91, 13); this.lblCookTime.TabIndex = 10; this.lblCookTime.Text = "Время (мин):"; // // numCookTime // this.numCookTime.Location = new System.Drawing.Point(120, 213); this.numCookTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0 }); this.numCookTime.Name = "numCookTime"; this.numCookTime.Size = new System.Drawing.Size(120, 20); this.numCookTime.TabIndex = 11; // // chkAvailable // this.chkAvailable.AutoSize = true; this.chkAvailable.Location = new System.Drawing.Point(120, 245); this.chkAvailable.Name = "chkAvailable"; this.chkAvailable.Size = new System.Drawing.Size(91, 17); this.chkAvailable.TabIndex = 12; this.chkAvailable.Text = "Доступно"; this.chkAvailable.UseVisualStyleBackColor = true; // // btnSave // this.btnSave.BackColor = System.Drawing.Color.LimeGreen; this.btnSave.Location = new System.Drawing.Point(120, 280); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(100, 30); this.btnSave.TabIndex = 13; this.btnSave.Text = "Сохранить"; this.btnSave.UseVisualStyleBackColor = false; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(240, 280); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(100, 30); this.btnCancel.TabIndex = 14; this.btnCancel.Text = "Отмена"; this.btnCancel.UseVisualStyleBackColor = true; // // DishEditForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(420, 340); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnSave); this.Controls.Add(this.chkAvailable); this.Controls.Add(this.numCookTime); this.Controls.Add(this.lblCookTime); this.Controls.Add(this.numWeight); this.Controls.Add(this.lblWeight); this.Controls.Add(this.numPrice); this.Controls.Add(this.lblPrice); this.Controls.Add(this.txtDescription); this.Controls.Add(this.lblDescription); this.Controls.Add(this.txtName); this.Controls.Add(this.lblName); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.lblCategory); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "DishEditForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Блюдо"; ((System.ComponentModel.ISupportInitialize)(this.numPrice)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numWeight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numCookTime)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Label lblCategory; private System.Windows.Forms.ComboBox cmbCategory; private System.Windows.Forms.Label lblName; private System.Windows.Forms.TextBox txtName; private System.Windows.Forms.Label lblDescription; private System.Windows.Forms.TextBox txtDescription; private System.Windows.Forms.Label lblPrice; private System.Windows.Forms.NumericUpDown numPrice; private System.Windows.Forms.Label lblWeight; private System.Windows.Forms.NumericUpDown numWeight; private System.Windows.Forms.Label lblCookTime; private System.Windows.Forms.NumericUpDown numCookTime; private System.Windows.Forms.CheckBox chkAvailable; private System.Windows.Forms.Button btnSave; private System.Windows.Forms.Button btnCancel; } }