FormParkSpaceStatus.Designer.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. namespace parkspace_manager
  2. {
  3. partial class FormParkSpaceStatus
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.ParkingSpaceMonitorPanel = new System.Windows.Forms.Panel();
  29. this.parkspaceStatusSamplePanel = new System.Windows.Forms.Panel();
  30. this.btn_unknown = new System.Windows.Forms.Button();
  31. this.btn_error = new System.Windows.Forms.Button();
  32. this.btn_locked = new System.Windows.Forms.Button();
  33. this.btn_reserved = new System.Windows.Forms.Button();
  34. this.btn_occupied = new System.Windows.Forms.Button();
  35. this.btn_empty = new System.Windows.Forms.Button();
  36. this.btn_clear = new System.Windows.Forms.Button();
  37. this.parkspaceStatusSamplePanel.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // ParkingSpaceMonitorPanel
  41. //
  42. this.ParkingSpaceMonitorPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
  43. this.ParkingSpaceMonitorPanel.Location = new System.Drawing.Point(0, 79);
  44. this.ParkingSpaceMonitorPanel.Name = "ParkingSpaceMonitorPanel";
  45. this.ParkingSpaceMonitorPanel.Size = new System.Drawing.Size(1574, 727);
  46. this.ParkingSpaceMonitorPanel.TabIndex = 0;
  47. //
  48. // parkspaceStatusSamplePanel
  49. //
  50. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_clear);
  51. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_unknown);
  52. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_error);
  53. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_locked);
  54. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_reserved);
  55. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_occupied);
  56. this.parkspaceStatusSamplePanel.Controls.Add(this.btn_empty);
  57. this.parkspaceStatusSamplePanel.Dock = System.Windows.Forms.DockStyle.Top;
  58. this.parkspaceStatusSamplePanel.Location = new System.Drawing.Point(0, 0);
  59. this.parkspaceStatusSamplePanel.Name = "parkspaceStatusSamplePanel";
  60. this.parkspaceStatusSamplePanel.Size = new System.Drawing.Size(1574, 73);
  61. this.parkspaceStatusSamplePanel.TabIndex = 1;
  62. //
  63. // btn_unknown
  64. //
  65. this.btn_unknown.BackColor = System.Drawing.Color.Violet;
  66. this.btn_unknown.Location = new System.Drawing.Point(864, 22);
  67. this.btn_unknown.Name = "btn_unknown";
  68. this.btn_unknown.Size = new System.Drawing.Size(133, 33);
  69. this.btn_unknown.TabIndex = 5;
  70. this.btn_unknown.Text = "未知";
  71. this.btn_unknown.UseVisualStyleBackColor = false;
  72. //
  73. // btn_error
  74. //
  75. this.btn_error.BackColor = System.Drawing.Color.Red;
  76. this.btn_error.Location = new System.Drawing.Point(700, 22);
  77. this.btn_error.Name = "btn_error";
  78. this.btn_error.Size = new System.Drawing.Size(133, 33);
  79. this.btn_error.TabIndex = 4;
  80. this.btn_error.Text = "故障";
  81. this.btn_error.UseVisualStyleBackColor = false;
  82. //
  83. // btn_locked
  84. //
  85. this.btn_locked.BackColor = System.Drawing.Color.LightGreen;
  86. this.btn_locked.Location = new System.Drawing.Point(528, 22);
  87. this.btn_locked.Name = "btn_locked";
  88. this.btn_locked.Size = new System.Drawing.Size(133, 33);
  89. this.btn_locked.TabIndex = 3;
  90. this.btn_locked.Text = "已锁定";
  91. this.btn_locked.UseVisualStyleBackColor = false;
  92. //
  93. // btn_reserved
  94. //
  95. this.btn_reserved.BackColor = System.Drawing.Color.SkyBlue;
  96. this.btn_reserved.Location = new System.Drawing.Point(356, 22);
  97. this.btn_reserved.Name = "btn_reserved";
  98. this.btn_reserved.Size = new System.Drawing.Size(133, 33);
  99. this.btn_reserved.TabIndex = 2;
  100. this.btn_reserved.Text = "已预约";
  101. this.btn_reserved.UseVisualStyleBackColor = false;
  102. //
  103. // btn_occupied
  104. //
  105. this.btn_occupied.BackColor = System.Drawing.Color.Yellow;
  106. this.btn_occupied.Location = new System.Drawing.Point(183, 22);
  107. this.btn_occupied.Name = "btn_occupied";
  108. this.btn_occupied.Size = new System.Drawing.Size(133, 33);
  109. this.btn_occupied.TabIndex = 1;
  110. this.btn_occupied.Text = "占用";
  111. this.btn_occupied.UseVisualStyleBackColor = false;
  112. //
  113. // btn_empty
  114. //
  115. this.btn_empty.BackColor = System.Drawing.Color.White;
  116. this.btn_empty.Location = new System.Drawing.Point(12, 22);
  117. this.btn_empty.Name = "btn_empty";
  118. this.btn_empty.Size = new System.Drawing.Size(133, 33);
  119. this.btn_empty.TabIndex = 0;
  120. this.btn_empty.Text = "空闲";
  121. this.btn_empty.UseVisualStyleBackColor = false;
  122. //
  123. // btn_clear
  124. //
  125. this.btn_clear.BackColor = System.Drawing.Color.Orange;
  126. this.btn_clear.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  127. this.btn_clear.Location = new System.Drawing.Point(1187, 22);
  128. this.btn_clear.Name = "btn_clear";
  129. this.btn_clear.Size = new System.Drawing.Size(133, 33);
  130. this.btn_clear.TabIndex = 6;
  131. this.btn_clear.Text = "一键清除";
  132. this.btn_clear.UseVisualStyleBackColor = false;
  133. this.btn_clear.Click += new System.EventHandler(this.btn_clear_Click);
  134. //
  135. // FormParkSpaceStatus
  136. //
  137. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  138. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  139. this.ClientSize = new System.Drawing.Size(1574, 806);
  140. this.Controls.Add(this.parkspaceStatusSamplePanel);
  141. this.Controls.Add(this.ParkingSpaceMonitorPanel);
  142. this.Name = "FormParkSpaceStatus";
  143. this.Text = "FormParkSpaceStatus";
  144. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormParkSpaceStatus_FormClosing);
  145. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormParkSpaceStatus_FormClosed);
  146. this.parkspaceStatusSamplePanel.ResumeLayout(false);
  147. this.ResumeLayout(false);
  148. }
  149. #endregion
  150. private System.Windows.Forms.Panel ParkingSpaceMonitorPanel;
  151. private System.Windows.Forms.Panel parkspaceStatusSamplePanel;
  152. private System.Windows.Forms.Button btn_empty;
  153. private System.Windows.Forms.Button btn_occupied;
  154. private System.Windows.Forms.Button btn_reserved;
  155. private System.Windows.Forms.Button btn_locked;
  156. private System.Windows.Forms.Button btn_error;
  157. private System.Windows.Forms.Button btn_unknown;
  158. private System.Windows.Forms.Button btn_clear;
  159. }
  160. }