NewRequestForm.Designer.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. namespace WindowsFormsApp4
  2. {
  3. partial class NewRequestForm
  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. private void InitializeComponent()
  15. {
  16. this.dtpMeasurementDate = new System.Windows.Forms.DateTimePicker();
  17. this.dtpMeasurementTime = new System.Windows.Forms.DateTimePicker();
  18. this.cmbAddress = new System.Windows.Forms.ComboBox();
  19. this.btnSave = new System.Windows.Forms.Button();
  20. this.btnCancel = new System.Windows.Forms.Button();
  21. this.lblAddress = new System.Windows.Forms.Label();
  22. this.lblDate = new System.Windows.Forms.Label();
  23. this.lblTime = new System.Windows.Forms.Label();
  24. this.lblTitle = new System.Windows.Forms.Label();
  25. this.panelHeader = new System.Windows.Forms.Panel();
  26. this.panelHeader.SuspendLayout();
  27. this.SuspendLayout();
  28. //
  29. // panelHeader
  30. //
  31. this.panelHeader.BackColor = System.Drawing.Color.FromArgb(50, 56, 67);
  32. this.panelHeader.Controls.Add(this.lblTitle);
  33. this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
  34. this.panelHeader.Location = new System.Drawing.Point(0, 0);
  35. this.panelHeader.Name = "panelHeader";
  36. this.panelHeader.Size = new System.Drawing.Size(450, 60);
  37. this.panelHeader.TabIndex = 0;
  38. //
  39. // lblTitle
  40. //
  41. this.lblTitle.AutoSize = true;
  42. this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold);
  43. this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  44. this.lblTitle.Location = new System.Drawing.Point(130, 15);
  45. this.lblTitle.Name = "lblTitle";
  46. this.lblTitle.Size = new System.Drawing.Size(200, 31);
  47. this.lblTitle.TabIndex = 0;
  48. this.lblTitle.Text = "Новая заявка";
  49. //
  50. // lblAddress
  51. //
  52. this.lblAddress.AutoSize = true;
  53. this.lblAddress.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  54. this.lblAddress.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  55. this.lblAddress.Location = new System.Drawing.Point(40, 90);
  56. this.lblAddress.Name = "lblAddress";
  57. this.lblAddress.Size = new System.Drawing.Size(120, 20);
  58. this.lblAddress.TabIndex = 1;
  59. this.lblAddress.Text = "Адрес доставки:";
  60. //
  61. // cmbAddress
  62. //
  63. this.cmbAddress.BackColor = System.Drawing.Color.FromArgb(50, 56, 67);
  64. this.cmbAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  65. this.cmbAddress.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  66. this.cmbAddress.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  67. this.cmbAddress.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  68. this.cmbAddress.Location = new System.Drawing.Point(170, 87);
  69. this.cmbAddress.Name = "cmbAddress";
  70. this.cmbAddress.Size = new System.Drawing.Size(230, 28);
  71. this.cmbAddress.TabIndex = 2;
  72. //
  73. // lblDate
  74. //
  75. this.lblDate.AutoSize = true;
  76. this.lblDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  77. this.lblDate.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  78. this.lblDate.Location = new System.Drawing.Point(70, 140);
  79. this.lblDate.Name = "lblDate";
  80. this.lblDate.Size = new System.Drawing.Size(90, 20);
  81. this.lblDate.TabIndex = 3;
  82. this.lblDate.Text = "Дата замера:";
  83. //
  84. // dtpMeasurementDate
  85. //
  86. this.dtpMeasurementDate.CalendarMonthBackground = System.Drawing.Color.FromArgb(50, 56, 67);
  87. this.dtpMeasurementDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  88. this.dtpMeasurementDate.Location = new System.Drawing.Point(170, 137);
  89. this.dtpMeasurementDate.MinDate = System.DateTime.Today;
  90. this.dtpMeasurementDate.Name = "dtpMeasurementDate";
  91. this.dtpMeasurementDate.Size = new System.Drawing.Size(120, 22);
  92. this.dtpMeasurementDate.TabIndex = 4;
  93. this.dtpMeasurementDate.Value = System.DateTime.Today.AddDays(1);
  94. //
  95. // lblTime
  96. //
  97. this.lblTime.AutoSize = true;
  98. this.lblTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  99. this.lblTime.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  100. this.lblTime.Location = new System.Drawing.Point(70, 180);
  101. this.lblTime.Name = "lblTime";
  102. this.lblTime.Size = new System.Drawing.Size(100, 20);
  103. this.lblTime.TabIndex = 5;
  104. this.lblTime.Text = "Время замера:";
  105. //
  106. // dtpMeasurementTime
  107. //
  108. this.dtpMeasurementTime.CustomFormat = "HH:mm";
  109. this.dtpMeasurementTime.Format = System.Windows.Forms.DateTimePickerFormat.Time;
  110. this.dtpMeasurementTime.Location = new System.Drawing.Point(170, 177);
  111. this.dtpMeasurementTime.Name = "dtpMeasurementTime";
  112. this.dtpMeasurementTime.ShowUpDown = true;
  113. this.dtpMeasurementTime.Size = new System.Drawing.Size(120, 22);
  114. this.dtpMeasurementTime.TabIndex = 6;
  115. this.dtpMeasurementTime.Value = new System.DateTime(2024, 1, 1, 10, 0, 0);
  116. //
  117. // btnSave
  118. //
  119. this.btnSave.BackColor = System.Drawing.Color.FromArgb(198, 141, 255);
  120. this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  121. this.btnSave.FlatAppearance.BorderSize = 0;
  122. this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
  123. this.btnSave.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
  124. this.btnSave.Location = new System.Drawing.Point(100, 240);
  125. this.btnSave.Name = "btnSave";
  126. this.btnSave.Size = new System.Drawing.Size(110, 40);
  127. this.btnSave.TabIndex = 7;
  128. this.btnSave.Text = "Создать";
  129. this.btnSave.UseVisualStyleBackColor = false;
  130. //
  131. // btnCancel
  132. //
  133. this.btnCancel.BackColor = System.Drawing.Color.FromArgb(203, 232, 87);
  134. this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  135. this.btnCancel.FlatAppearance.BorderSize = 0;
  136. this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
  137. this.btnCancel.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
  138. this.btnCancel.Location = new System.Drawing.Point(230, 240);
  139. this.btnCancel.Name = "btnCancel";
  140. this.btnCancel.Size = new System.Drawing.Size(110, 40);
  141. this.btnCancel.TabIndex = 8;
  142. this.btnCancel.Text = "Отмена";
  143. this.btnCancel.UseVisualStyleBackColor = false;
  144. //
  145. // NewRequestForm
  146. //
  147. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  148. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  149. this.BackColor = System.Drawing.Color.FromArgb(50, 56, 67);
  150. this.ClientSize = new System.Drawing.Size(450, 320);
  151. this.Controls.Add(this.btnCancel);
  152. this.Controls.Add(this.btnSave);
  153. this.Controls.Add(this.dtpMeasurementTime);
  154. this.Controls.Add(this.lblTime);
  155. this.Controls.Add(this.dtpMeasurementDate);
  156. this.Controls.Add(this.lblDate);
  157. this.Controls.Add(this.cmbAddress);
  158. this.Controls.Add(this.lblAddress);
  159. this.Controls.Add(this.panelHeader);
  160. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  161. this.MaximizeBox = false;
  162. this.Name = "NewRequestForm";
  163. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  164. this.Text = "Новая заявка";
  165. this.panelHeader.ResumeLayout(false);
  166. this.panelHeader.PerformLayout();
  167. this.ResumeLayout(false);
  168. this.PerformLayout();
  169. }
  170. private System.Windows.Forms.DateTimePicker dtpMeasurementDate;
  171. private System.Windows.Forms.DateTimePicker dtpMeasurementTime;
  172. private System.Windows.Forms.ComboBox cmbAddress;
  173. private System.Windows.Forms.Button btnSave;
  174. private System.Windows.Forms.Button btnCancel;
  175. private System.Windows.Forms.Label lblAddress;
  176. private System.Windows.Forms.Label lblDate;
  177. private System.Windows.Forms.Label lblTime;
  178. private System.Windows.Forms.Label lblTitle;
  179. private System.Windows.Forms.Panel panelHeader;
  180. }
  181. }