MessageBoxForm.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.OKbtn = new System.Windows.Forms.Button();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.panelProgressBarContainer = new System.Windows.Forms.Panel();
  35. this.time_label = new System.Windows.Forms.Label();
  36. this.panel1.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // msgBox
  40. //
  41. this.msgBox.AutoSize = true;
  42. this.msgBox.Font = new System.Drawing.Font("宋体", 30F);
  43. this.msgBox.ForeColor = System.Drawing.Color.Black;
  44. this.msgBox.Location = new System.Drawing.Point(134, 192);
  45. this.msgBox.Name = "msgBox";
  46. this.msgBox.Size = new System.Drawing.Size(37, 40);
  47. this.msgBox.TabIndex = 1;
  48. this.msgBox.Text = ".";
  49. //
  50. // OKbtn
  51. //
  52. this.OKbtn.FlatAppearance.BorderSize = 0;
  53. this.OKbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  54. this.OKbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  55. this.OKbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  56. this.OKbtn.Font = new System.Drawing.Font("宋体", 10F);
  57. this.OKbtn.ForeColor = System.Drawing.SystemColors.ControlLightLight;
  58. this.OKbtn.Image = ((System.Drawing.Image)(resources.GetObject("OKbtn.Image")));
  59. this.OKbtn.Location = new System.Drawing.Point(302, 354);
  60. this.OKbtn.Name = "OKbtn";
  61. this.OKbtn.Size = new System.Drawing.Size(393, 106);
  62. this.OKbtn.TabIndex = 2;
  63. this.OKbtn.UseVisualStyleBackColor = true;
  64. this.OKbtn.Click += new System.EventHandler(this.OKbtn_Click);
  65. //
  66. // panel1
  67. //
  68. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(114)))), ((int)(((byte)(223)))));
  69. this.panel1.Controls.Add(this.time_label);
  70. this.panel1.Controls.Add(this.panelProgressBarContainer);
  71. this.panel1.Location = new System.Drawing.Point(0, 0);
  72. this.panel1.Name = "panel1";
  73. this.panel1.Size = new System.Drawing.Size(982, 66);
  74. this.panel1.TabIndex = 0;
  75. //
  76. // panelProgressBarContainer
  77. //
  78. this.panelProgressBarContainer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(114)))), ((int)(((byte)(223)))));
  79. this.panelProgressBarContainer.Location = new System.Drawing.Point(0, 56);
  80. this.panelProgressBarContainer.Name = "panelProgressBarContainer";
  81. this.panelProgressBarContainer.Size = new System.Drawing.Size(982, 10);
  82. this.panelProgressBarContainer.TabIndex = 3;
  83. //
  84. // time_label
  85. //
  86. this.time_label.Font = new System.Drawing.Font("宋体", 23F);
  87. this.time_label.Location = new System.Drawing.Point(930, 9);
  88. this.time_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  89. this.time_label.Name = "time_label";
  90. this.time_label.Size = new System.Drawing.Size(32, 36);
  91. this.time_label.TabIndex = 4;
  92. this.time_label.Text = "5";
  93. //
  94. // MessageBoxForm
  95. //
  96. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  97. this.BackColor = System.Drawing.Color.White;
  98. this.ClientSize = new System.Drawing.Size(982, 500);
  99. this.Controls.Add(this.OKbtn);
  100. this.Controls.Add(this.msgBox);
  101. this.Controls.Add(this.panel1);
  102. this.ForeColor = System.Drawing.Color.Black;
  103. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  104. this.Location = new System.Drawing.Point(56, 600);
  105. this.MaximizeBox = false;
  106. this.Name = "MessageBoxForm";
  107. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  108. this.Text = "MessageForm";
  109. this.panel1.ResumeLayout(false);
  110. this.ResumeLayout(false);
  111. this.PerformLayout();
  112. }
  113. #endregion
  114. private System.Windows.Forms.Button OKbtn;
  115. public System.Windows.Forms.Label msgBox;
  116. private System.Windows.Forms.Panel panel1;
  117. private Panel panelProgressBarContainer;
  118. private Label time_label;
  119. }
  120. }