| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- namespace PhotoStudioApp
- {
- partial class OrderForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- private void InitializeComponent()
- {
- this.lblClient = new System.Windows.Forms.Label();
- this.lblEmployee = new System.Windows.Forms.Label();
- this.lblService = new System.Windows.Forms.Label();
- this.cmbClient = new System.Windows.Forms.ComboBox();
- this.cmbEmployee = new System.Windows.Forms.ComboBox();
- this.cmbService = new System.Windows.Forms.ComboBox();
- this.btnSave = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.SuspendLayout();
- // lblClient
- this.lblClient.AutoSize = true;
- this.lblClient.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.lblClient.Location = new System.Drawing.Point(30, 30);
- this.lblClient.Name = "lblClient";
- this.lblClient.Size = new System.Drawing.Size(97, 18);
- this.lblClient.TabIndex = 0;
- this.lblClient.Text = "Клиент:";
- // lblEmployee
- this.lblEmployee.AutoSize = true;
- this.lblEmployee.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.lblEmployee.Location = new System.Drawing.Point(30, 70);
- this.lblEmployee.Name = "lblEmployee";
- this.lblEmployee.Size = new System.Drawing.Size(112, 18);
- this.lblEmployee.TabIndex = 1;
- this.lblEmployee.Text = "Сотрудник:";
- // lblService
- this.lblService.AutoSize = true;
- this.lblService.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.lblService.Location = new System.Drawing.Point(30, 110);
- this.lblService.Name = "lblService";
- this.lblService.Size = new System.Drawing.Size(89, 18);
- this.lblService.TabIndex = 2;
- this.lblService.Text = "Услуга:";
- // cmbClient
- this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbClient.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.cmbClient.Location = new System.Drawing.Point(160, 27);
- this.cmbClient.Name = "cmbClient";
- this.cmbClient.Size = new System.Drawing.Size(200, 26);
- this.cmbClient.TabIndex = 3;
- // cmbEmployee
- this.cmbEmployee.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbEmployee.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.cmbEmployee.Location = new System.Drawing.Point(160, 67);
- this.cmbEmployee.Name = "cmbEmployee";
- this.cmbEmployee.Size = new System.Drawing.Size(200, 26);
- this.cmbEmployee.TabIndex = 4;
- // cmbService
- this.cmbService.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbService.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.cmbService.Location = new System.Drawing.Point(160, 107);
- this.cmbService.Name = "cmbService";
- this.cmbService.Size = new System.Drawing.Size(200, 26);
- this.cmbService.TabIndex = 5;
- // btnSave
- this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnSave.Location = new System.Drawing.Point(50, 160);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(100, 35);
- this.btnSave.TabIndex = 6;
- this.btnSave.Text = "Сохранить";
- this.btnSave.UseVisualStyleBackColor = true;
- this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
- // btnCancel
- this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnCancel.Location = new System.Drawing.Point(170, 160);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(100, 35);
- this.btnCancel.TabIndex = 7;
- this.btnCancel.Text = "Отмена";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- // OrderForm
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(400, 220);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnSave);
- this.Controls.Add(this.cmbService);
- this.Controls.Add(this.cmbEmployee);
- this.Controls.Add(this.cmbClient);
- this.Controls.Add(this.lblService);
- this.Controls.Add(this.lblEmployee);
- this.Controls.Add(this.lblClient);
- this.Name = "OrderForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Заказ";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label lblClient;
- private System.Windows.Forms.Label lblEmployee;
- private System.Windows.Forms.Label lblService;
- private System.Windows.Forms.ComboBox cmbClient;
- private System.Windows.Forms.ComboBox cmbEmployee;
- private System.Windows.Forms.ComboBox cmbService;
- private System.Windows.Forms.Button btnSave;
- private System.Windows.Forms.Button btnCancel;
- }
- }
|