frmMsgInfo.Designer.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace CarMonitor
  2. {
  3. partial class frmMsgInfo
  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.components = new System.ComponentModel.Container();
  29. this.timer1 = new System.Windows.Forms.Timer(this.components);
  30. this.lbPoint = new System.Windows.Forms.Label();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // timer1
  35. //
  36. this.timer1.Interval = 2000;
  37. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  38. //
  39. // lbPoint
  40. //
  41. this.lbPoint.AutoSize = true;
  42. this.lbPoint.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  43. this.lbPoint.ForeColor = System.Drawing.Color.Red;
  44. this.lbPoint.Location = new System.Drawing.Point(9, 9);
  45. this.lbPoint.Name = "lbPoint";
  46. this.lbPoint.Size = new System.Drawing.Size(0, 14);
  47. this.lbPoint.TabIndex = 3;
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.label1.ForeColor = System.Drawing.Color.Red;
  54. this.label1.Location = new System.Drawing.Point(6, 41);
  55. this.label1.Name = "label1";
  56. this.label1.Size = new System.Drawing.Size(82, 14);
  57. this.label1.TabIndex = 2;
  58. this.label1.Text = "正在呼叫!";
  59. //
  60. // frmMsgInfo
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(268, 63);
  65. this.Controls.Add(this.lbPoint);
  66. this.Controls.Add(this.label1);
  67. this.Margin = new System.Windows.Forms.Padding(2);
  68. this.Name = "frmMsgInfo";
  69. this.Text = "消息提醒";
  70. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMsgInfo_FormClosing);
  71. this.Load += new System.EventHandler(this.frmMsgInfo_Load);
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.Timer timer1;
  77. private System.Windows.Forms.Label lbPoint;
  78. private System.Windows.Forms.Label label1;
  79. }
  80. }