GUI/MainForm.Designer.cs
changeset 28 9b205b2ab056
parent 27 beed5a9e1b78
child 40 2392f7402fb6
     1.1 --- a/GUI/MainForm.Designer.cs	Fri Feb 05 22:45:15 2010 +0000
     1.2 +++ b/GUI/MainForm.Designer.cs	Sun Feb 07 16:37:15 2010 +0000
     1.3 @@ -94,6 +94,8 @@
     1.4        this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     1.5        this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     1.6        this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     1.7 +      this.minTrayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     1.8 +      this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     1.9        this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    1.10        this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    1.11        this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    1.12 @@ -409,16 +411,32 @@
    1.13        // optionsToolStripMenuItem
    1.14        // 
    1.15        this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
    1.16 +            this.minTrayMenuItem,
    1.17 +            this.toolStripMenuItem3,
    1.18              this.hddMenuItem});
    1.19        this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
    1.20        this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
    1.21        this.optionsToolStripMenuItem.Text = "Options";
    1.22        // 
    1.23 +      // minTrayMenuItem
    1.24 +      // 
    1.25 +      this.minTrayMenuItem.Checked = true;
    1.26 +      this.minTrayMenuItem.CheckOnClick = true;
    1.27 +      this.minTrayMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
    1.28 +      this.minTrayMenuItem.Name = "minTrayMenuItem";
    1.29 +      this.minTrayMenuItem.Size = new System.Drawing.Size(166, 22);
    1.30 +      this.minTrayMenuItem.Text = "Minimize To Tray";
    1.31 +      // 
    1.32 +      // toolStripMenuItem3
    1.33 +      // 
    1.34 +      this.toolStripMenuItem3.Name = "toolStripMenuItem3";
    1.35 +      this.toolStripMenuItem3.Size = new System.Drawing.Size(163, 6);
    1.36 +      // 
    1.37        // hddMenuItem
    1.38        // 
    1.39        this.hddMenuItem.CheckOnClick = true;
    1.40        this.hddMenuItem.Name = "hddMenuItem";
    1.41 -      this.hddMenuItem.Size = new System.Drawing.Size(141, 22);
    1.42 +      this.hddMenuItem.Size = new System.Drawing.Size(166, 22);
    1.43        this.hddMenuItem.Text = "HDD sensors";
    1.44        this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
    1.45        // 
    1.46 @@ -477,7 +495,7 @@
    1.47        this.notifyIcon.ContextMenuStrip = this.notifyContextMenuStrip;
    1.48        this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
    1.49        this.notifyIcon.Text = "Open Hardware Monitor";
    1.50 -      this.notifyIcon.Click += new System.EventHandler(this.notifyIcon_Click);
    1.51 +      this.notifyIcon.DoubleClick += new System.EventHandler(this.restoreClick);
    1.52        // 
    1.53        // notifyContextMenuStrip
    1.54        // 
    1.55 @@ -486,25 +504,25 @@
    1.56              this.toolStripMenuItem2,
    1.57              this.exitToolStripMenuItem1});
    1.58        this.notifyContextMenuStrip.Name = "notifyContextMenuStrip";
    1.59 -      this.notifyContextMenuStrip.Size = new System.Drawing.Size(153, 76);
    1.60 +      this.notifyContextMenuStrip.Size = new System.Drawing.Size(119, 54);
    1.61        // 
    1.62        // restoreToolStripMenuItem
    1.63        // 
    1.64 -      this.restoreToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F);
    1.65 +      this.restoreToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
    1.66        this.restoreToolStripMenuItem.Name = "restoreToolStripMenuItem";
    1.67 -      this.restoreToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
    1.68 +      this.restoreToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
    1.69        this.restoreToolStripMenuItem.Text = "Restore";
    1.70 -      this.restoreToolStripMenuItem.Click += new System.EventHandler(this.restoreToolStripMenuItem_Click);
    1.71 +      this.restoreToolStripMenuItem.Click += new System.EventHandler(this.restoreClick);
    1.72        // 
    1.73        // toolStripMenuItem2
    1.74        // 
    1.75        this.toolStripMenuItem2.Name = "toolStripMenuItem2";
    1.76 -      this.toolStripMenuItem2.Size = new System.Drawing.Size(149, 6);
    1.77 +      this.toolStripMenuItem2.Size = new System.Drawing.Size(115, 6);
    1.78        // 
    1.79        // exitToolStripMenuItem1
    1.80        // 
    1.81        this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
    1.82 -      this.exitToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
    1.83 +      this.exitToolStripMenuItem1.Size = new System.Drawing.Size(118, 22);
    1.84        this.exitToolStripMenuItem1.Text = "Exit";
    1.85        this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
    1.86        // 
    1.87 @@ -579,6 +597,8 @@
    1.88      private System.Windows.Forms.ToolStripMenuItem restoreToolStripMenuItem;
    1.89      private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
    1.90      private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem1;
    1.91 +    private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
    1.92 +    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
    1.93    }
    1.94  }
    1.95