| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- namespace FrmMonitor
- {
- partial class Monitor
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- try
- {
- //imageControl.Stop();
- }
- catch { }
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.label1 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Interval = 5000;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // label1
- //
- this.label1.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(488, 108);
- this.label1.TabIndex = 0;
- this.label1.Text = "计量监控程序,用于监控CPU资源,避免主程序异常重启,请勿关闭";
- //
- // Monitor
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(512, 247);
- this.ControlBox = false;
- this.Controls.Add(this.label1);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "Monitor";
- this.Text = "监控";
- this.Load += new System.EventHandler(this.Monitor_Load);
- this.Shown += new System.EventHandler(this.Monitor_Shown);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.Label label1;
- }
- }
|