MessageBoxForm.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. using System;
  2. using System.Windows.Forms;
  3. namespace chutian_parking_terminal
  4. {
  5. partial class MessageBoxForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MessageBoxForm));
  31. this.msgBox = new System.Windows.Forms.Label();
  32. this.panel1 = new System.Windows.Forms.Panel();
  33. this.time_label = new System.Windows.Forms.Label();
  34. this.panelProgressBarContainer = new System.Windows.Forms.Panel();
  35. this.OKbtn = new System.Windows.Forms.Button();
  36. this.panel2 = new System.Windows.Forms.Panel();
  37. this.panel1.SuspendLayout();
  38. this.panel2.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // msgBox
  42. //
  43. this.msgBox.Dock = System.Windows.Forms.DockStyle.Fill;
  44. this.msgBox.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  45. this.msgBox.ForeColor = System.Drawing.Color.Black;
  46. this.msgBox.Location = new System.Drawing.Point(0, 0);
  47. this.msgBox.Name = "msgBox";
  48. this.msgBox.Size = new System.Drawing.Size(520, 157);
  49. this.msgBox.TabIndex = 1;
  50. this.msgBox.Text = ".";
  51. this.msgBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  52. //
  53. // panel1
  54. //
  55. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(114)))), ((int)(((byte)(223)))));
  56. this.panel1.Controls.Add(this.time_label);
  57. this.panel1.Controls.Add(this.panelProgressBarContainer);
  58. this.panel1.Location = new System.Drawing.Point(0, 0);
  59. this.panel1.Name = "panel1";
  60. this.panel1.Size = new System.Drawing.Size(630, 66);
  61. this.panel1.TabIndex = 0;
  62. //
  63. // time_label
  64. //
  65. this.time_label.Font = new System.Drawing.Font("宋体", 23F);
  66. this.time_label.Location = new System.Drawing.Point(586, 9);
  67. this.time_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  68. this.time_label.Name = "time_label";
  69. this.time_label.Size = new System.Drawing.Size(32, 36);
  70. this.time_label.TabIndex = 4;
  71. this.time_label.Text = "5";
  72. //
  73. // panelProgressBarContainer
  74. //
  75. this.panelProgressBarContainer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(114)))), ((int)(((byte)(223)))));
  76. this.panelProgressBarContainer.Location = new System.Drawing.Point(0, 56);
  77. this.panelProgressBarContainer.Name = "panelProgressBarContainer";
  78. this.panelProgressBarContainer.Size = new System.Drawing.Size(982, 10);
  79. this.panelProgressBarContainer.TabIndex = 3;
  80. //
  81. // OKbtn
  82. //
  83. this.OKbtn.FlatAppearance.BorderSize = 0;
  84. this.OKbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  85. this.OKbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  86. this.OKbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  87. this.OKbtn.Font = new System.Drawing.Font("宋体", 10F);
  88. this.OKbtn.ForeColor = System.Drawing.SystemColors.ControlLightLight;
  89. this.OKbtn.Image = ((System.Drawing.Image)(resources.GetObject("OKbtn.Image")));
  90. this.OKbtn.Location = new System.Drawing.Point(167, 265);
  91. this.OKbtn.Name = "OKbtn";
  92. this.OKbtn.Size = new System.Drawing.Size(294, 69);
  93. this.OKbtn.TabIndex = 2;
  94. this.OKbtn.UseVisualStyleBackColor = true;
  95. this.OKbtn.Click += new System.EventHandler(this.OKbtn_Click);
  96. //
  97. // panel2
  98. //
  99. this.panel2.Controls.Add(this.msgBox);
  100. this.panel2.Location = new System.Drawing.Point(52, 102);
  101. this.panel2.Name = "panel2";
  102. this.panel2.Size = new System.Drawing.Size(520, 157);
  103. this.panel2.TabIndex = 3;
  104. //
  105. // MessageBoxForm
  106. //
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  108. this.BackColor = System.Drawing.Color.White;
  109. this.ClientSize = new System.Drawing.Size(629, 379);
  110. this.Controls.Add(this.panel2);
  111. this.Controls.Add(this.OKbtn);
  112. this.Controls.Add(this.panel1);
  113. this.ForeColor = System.Drawing.Color.Black;
  114. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  115. this.Location = new System.Drawing.Point(56, 600);
  116. this.MaximizeBox = false;
  117. this.Name = "MessageBoxForm";
  118. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  119. this.Text = "MessageForm";
  120. this.panel1.ResumeLayout(false);
  121. this.panel2.ResumeLayout(false);
  122. this.ResumeLayout(false);
  123. }
  124. #endregion
  125. private System.Windows.Forms.Button OKbtn;
  126. public System.Windows.Forms.Label msgBox;
  127. private System.Windows.Forms.Panel panel1;
  128. private Panel panelProgressBarContainer;
  129. private Label time_label;
  130. private Panel panel2;
  131. }
  132. }