OrderForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace PhotoStudioApp
  2. {
  3. partial class OrderForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. #region Windows Form Designer generated code
  15. private void InitializeComponent()
  16. {
  17. this.lblClient = new System.Windows.Forms.Label();
  18. this.lblEmployee = new System.Windows.Forms.Label();
  19. this.lblService = new System.Windows.Forms.Label();
  20. this.cmbClient = new System.Windows.Forms.ComboBox();
  21. this.cmbEmployee = new System.Windows.Forms.ComboBox();
  22. this.cmbService = new System.Windows.Forms.ComboBox();
  23. this.btnSave = new System.Windows.Forms.Button();
  24. this.btnCancel = new System.Windows.Forms.Button();
  25. this.SuspendLayout();
  26. // lblClient
  27. this.lblClient.AutoSize = true;
  28. this.lblClient.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  29. this.lblClient.Location = new System.Drawing.Point(30, 30);
  30. this.lblClient.Name = "lblClient";
  31. this.lblClient.Size = new System.Drawing.Size(97, 18);
  32. this.lblClient.TabIndex = 0;
  33. this.lblClient.Text = "Клиент:";
  34. // lblEmployee
  35. this.lblEmployee.AutoSize = true;
  36. this.lblEmployee.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  37. this.lblEmployee.Location = new System.Drawing.Point(30, 70);
  38. this.lblEmployee.Name = "lblEmployee";
  39. this.lblEmployee.Size = new System.Drawing.Size(112, 18);
  40. this.lblEmployee.TabIndex = 1;
  41. this.lblEmployee.Text = "Сотрудник:";
  42. // lblService
  43. this.lblService.AutoSize = true;
  44. this.lblService.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  45. this.lblService.Location = new System.Drawing.Point(30, 110);
  46. this.lblService.Name = "lblService";
  47. this.lblService.Size = new System.Drawing.Size(89, 18);
  48. this.lblService.TabIndex = 2;
  49. this.lblService.Text = "Услуга:";
  50. // cmbClient
  51. this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  52. this.cmbClient.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  53. this.cmbClient.Location = new System.Drawing.Point(160, 27);
  54. this.cmbClient.Name = "cmbClient";
  55. this.cmbClient.Size = new System.Drawing.Size(200, 26);
  56. this.cmbClient.TabIndex = 3;
  57. // cmbEmployee
  58. this.cmbEmployee.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  59. this.cmbEmployee.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  60. this.cmbEmployee.Location = new System.Drawing.Point(160, 67);
  61. this.cmbEmployee.Name = "cmbEmployee";
  62. this.cmbEmployee.Size = new System.Drawing.Size(200, 26);
  63. this.cmbEmployee.TabIndex = 4;
  64. // cmbService
  65. this.cmbService.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  66. this.cmbService.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  67. this.cmbService.Location = new System.Drawing.Point(160, 107);
  68. this.cmbService.Name = "cmbService";
  69. this.cmbService.Size = new System.Drawing.Size(200, 26);
  70. this.cmbService.TabIndex = 5;
  71. // btnSave
  72. this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  73. this.btnSave.Location = new System.Drawing.Point(50, 160);
  74. this.btnSave.Name = "btnSave";
  75. this.btnSave.Size = new System.Drawing.Size(100, 35);
  76. this.btnSave.TabIndex = 6;
  77. this.btnSave.Text = "Сохранить";
  78. this.btnSave.UseVisualStyleBackColor = true;
  79. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  80. // btnCancel
  81. this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  82. this.btnCancel.Location = new System.Drawing.Point(170, 160);
  83. this.btnCancel.Name = "btnCancel";
  84. this.btnCancel.Size = new System.Drawing.Size(100, 35);
  85. this.btnCancel.TabIndex = 7;
  86. this.btnCancel.Text = "Отмена";
  87. this.btnCancel.UseVisualStyleBackColor = true;
  88. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  89. // OrderForm
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(400, 220);
  93. this.Controls.Add(this.btnCancel);
  94. this.Controls.Add(this.btnSave);
  95. this.Controls.Add(this.cmbService);
  96. this.Controls.Add(this.cmbEmployee);
  97. this.Controls.Add(this.cmbClient);
  98. this.Controls.Add(this.lblService);
  99. this.Controls.Add(this.lblEmployee);
  100. this.Controls.Add(this.lblClient);
  101. this.Name = "OrderForm";
  102. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  103. this.Text = "Заказ";
  104. this.ResumeLayout(false);
  105. this.PerformLayout();
  106. }
  107. #endregion
  108. private System.Windows.Forms.Label lblClient;
  109. private System.Windows.Forms.Label lblEmployee;
  110. private System.Windows.Forms.Label lblService;
  111. private System.Windows.Forms.ComboBox cmbClient;
  112. private System.Windows.Forms.ComboBox cmbEmployee;
  113. private System.Windows.Forms.ComboBox cmbService;
  114. private System.Windows.Forms.Button btnSave;
  115. private System.Windows.Forms.Button btnCancel;
  116. }
  117. }