Monitor.Designer.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. namespace FrmMonitor
  2. {
  3. partial class Monitor
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. try
  19. {
  20. //imageControl.Stop();
  21. }
  22. catch { }
  23. }
  24. base.Dispose(disposing);
  25. }
  26. #region Windows 窗体设计器生成的代码
  27. /// <summary>
  28. /// 设计器支持所需的方法 - 不要修改
  29. /// 使用代码编辑器修改此方法的内容。
  30. /// </summary>
  31. private void InitializeComponent()
  32. {
  33. this.components = new System.ComponentModel.Container();
  34. this.timer1 = new System.Windows.Forms.Timer(this.components);
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // timer1
  39. //
  40. this.timer1.Enabled = true;
  41. this.timer1.Interval = 5000;
  42. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  43. //
  44. // label1
  45. //
  46. this.label1.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  47. this.label1.Location = new System.Drawing.Point(12, 9);
  48. this.label1.Name = "label1";
  49. this.label1.Size = new System.Drawing.Size(488, 108);
  50. this.label1.TabIndex = 0;
  51. this.label1.Text = "计量监控程序,用于监控CPU资源,避免主程序异常重启,请勿关闭";
  52. //
  53. // Monitor
  54. //
  55. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  56. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  57. this.ClientSize = new System.Drawing.Size(512, 247);
  58. this.ControlBox = false;
  59. this.Controls.Add(this.label1);
  60. this.MaximizeBox = false;
  61. this.MinimizeBox = false;
  62. this.Name = "Monitor";
  63. this.Text = "监控";
  64. this.Load += new System.EventHandler(this.Monitor_Load);
  65. this.Shown += new System.EventHandler(this.Monitor_Shown);
  66. this.ResumeLayout(false);
  67. }
  68. #endregion
  69. private System.Windows.Forms.Timer timer1;
  70. private System.Windows.Forms.Label label1;
  71. }
  72. }