2023-05-13 19:29:18 +04:00
|
|
|
|
namespace BeautySalon
|
|
|
|
|
{
|
|
|
|
|
partial class FormMasterService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.labelService = new System.Windows.Forms.Label();
|
|
|
|
|
this.labelTime = new System.Windows.Forms.Label();
|
|
|
|
|
this.comboBoxService = new System.Windows.Forms.ComboBox();
|
|
|
|
|
this.textBoxTime = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelService
|
|
|
|
|
//
|
|
|
|
|
this.labelService.AutoSize = true;
|
|
|
|
|
this.labelService.Location = new System.Drawing.Point(23, 22);
|
|
|
|
|
this.labelService.Name = "labelService";
|
|
|
|
|
this.labelService.Size = new System.Drawing.Size(47, 15);
|
|
|
|
|
this.labelService.TabIndex = 0;
|
|
|
|
|
this.labelService.Text = "Услуга:";
|
|
|
|
|
//
|
|
|
|
|
// labelTime
|
|
|
|
|
//
|
|
|
|
|
this.labelTime.AutoSize = true;
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.labelTime.Location = new System.Drawing.Point(23, 51);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.labelTime.Name = "labelTime";
|
|
|
|
|
this.labelTime.Size = new System.Drawing.Size(45, 15);
|
|
|
|
|
this.labelTime.TabIndex = 1;
|
|
|
|
|
this.labelTime.Text = "Время:";
|
|
|
|
|
//
|
|
|
|
|
// comboBoxService
|
|
|
|
|
//
|
|
|
|
|
this.comboBoxService.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
|
|
|
this.comboBoxService.FormattingEnabled = true;
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.comboBoxService.Location = new System.Drawing.Point(76, 19);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.comboBoxService.Name = "comboBoxService";
|
|
|
|
|
this.comboBoxService.Size = new System.Drawing.Size(248, 23);
|
|
|
|
|
this.comboBoxService.TabIndex = 2;
|
|
|
|
|
//
|
|
|
|
|
// textBoxTime
|
|
|
|
|
//
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.textBoxTime.Location = new System.Drawing.Point(76, 48);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.textBoxTime.Name = "textBoxTime";
|
|
|
|
|
this.textBoxTime.Size = new System.Drawing.Size(248, 23);
|
|
|
|
|
this.textBoxTime.TabIndex = 3;
|
|
|
|
|
//
|
|
|
|
|
// buttonSave
|
|
|
|
|
//
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.buttonSave.Location = new System.Drawing.Point(168, 82);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.buttonSave.Name = "buttonSave";
|
|
|
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.buttonSave.TabIndex = 4;
|
|
|
|
|
this.buttonSave.Text = "Сохранить";
|
|
|
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.buttonCancel.Location = new System.Drawing.Point(249, 82);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
|
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.buttonCancel.TabIndex = 5;
|
|
|
|
|
this.buttonCancel.Text = "Отмена";
|
|
|
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
|
|
|
//
|
|
|
|
|
// FormMasterService
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2023-05-13 23:36:15 +04:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(347, 117);
|
2023-05-13 19:29:18 +04:00
|
|
|
|
this.Controls.Add(this.buttonCancel);
|
|
|
|
|
this.Controls.Add(this.buttonSave);
|
|
|
|
|
this.Controls.Add(this.textBoxTime);
|
|
|
|
|
this.Controls.Add(this.comboBoxService);
|
|
|
|
|
this.Controls.Add(this.labelTime);
|
|
|
|
|
this.Controls.Add(this.labelService);
|
|
|
|
|
this.Name = "FormMasterService";
|
|
|
|
|
this.Text = "Услуга мастера";
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Label labelService;
|
|
|
|
|
private Label labelTime;
|
|
|
|
|
private ComboBox comboBoxService;
|
|
|
|
|
private TextBox textBoxTime;
|
|
|
|
|
private Button buttonSave;
|
|
|
|
|
private Button buttonCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|