namespace BeautySaloonView { partial class FormService { /// /// 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.labelService = new System.Windows.Forms.Label(); this.textBox = new System.Windows.Forms.TextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.labelPrice = new System.Windows.Forms.Label(); this.numericUpDown = new System.Windows.Forms.NumericUpDown(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit(); this.SuspendLayout(); // // labelService // this.labelService.AutoSize = true; this.labelService.Location = new System.Drawing.Point(12, 9); this.labelService.Name = "labelService"; this.labelService.Size = new System.Drawing.Size(99, 15); this.labelService.TabIndex = 0; this.labelService.Text = "Название услуги"; // // textBox // this.textBox.Location = new System.Drawing.Point(141, 6); this.textBox.Name = "textBox"; this.textBox.Size = new System.Drawing.Size(223, 23); this.textBox.TabIndex = 1; // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(282, 63); 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 = 13; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(194, 63); 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 = 12; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // labelPrice // this.labelPrice.AutoSize = true; this.labelPrice.Location = new System.Drawing.Point(12, 37); this.labelPrice.Name = "labelPrice"; this.labelPrice.Size = new System.Drawing.Size(35, 15); this.labelPrice.TabIndex = 14; this.labelPrice.Text = "Цена"; // // numericUpDown // this.numericUpDown.Location = new System.Drawing.Point(141, 35); this.numericUpDown.Name = "numericUpDown"; this.numericUpDown.Size = new System.Drawing.Size(223, 23); this.numericUpDown.TabIndex = 15; this.numericUpDown.Maximum = 20000; // // FormService // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(376, 91); this.Controls.Add(this.numericUpDown); this.Controls.Add(this.labelPrice); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.textBox); this.Controls.Add(this.labelService); this.Name = "FormService"; this.Text = "Создание услуги"; this.Load += new System.EventHandler(this.FormService_Load); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelService; private TextBox textBox; private Button buttonCancel; private Button buttonSave; private Label labelPrice; private NumericUpDown numericUpDown; } }