GUI/MainForm.Designer.cs
author moel.mich
Sat, 05 Jun 2010 18:59:54 +0000
changeset 133 9ad699538c89
parent 125 b1278888d9a9
child 134 8b3b9b2e28e5
permissions -rw-r--r--
Fixed Issue 65.
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     5   The contents of this file are subject to the Mozilla Public License Version
     6   1.1 (the "License"); you may not use this file except in compliance with
     7   the License. You may obtain a copy of the License at
     8  
     9   http://www.mozilla.org/MPL/
    10 
    11   Software distributed under the License is distributed on an "AS IS" basis,
    12   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    13   for the specific language governing rights and limitations under the License.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    17   The Initial Developer of the Original Code is 
    18   Michael Möller <m.moeller@gmx.ch>.
    19   Portions created by the Initial Developer are Copyright (C) 2009-2010
    20   the Initial Developer. All Rights Reserved.
    21 
    22   Contributor(s):
    23 
    24   Alternatively, the contents of this file may be used under the terms of
    25   either the GNU General Public License Version 2 or later (the "GPL"), or
    26   the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    27   in which case the provisions of the GPL or the LGPL are applicable instead
    28   of those above. If you wish to allow use of your version of this file only
    29   under the terms of either the GPL or the LGPL, and not to allow others to
    30   use your version of this file under the terms of the MPL, indicate your
    31   decision by deleting the provisions above and replace them with the notice
    32   and other provisions required by the GPL or the LGPL. If you do not delete
    33   the provisions above, a recipient may use your version of this file under
    34   the terms of any one of the MPL, the GPL or the LGPL.
    35  
    36 */
    37 
    38 namespace OpenHardwareMonitor.GUI {
    39   partial class MainForm {
    40     /// <summary>
    41     /// Required designer variable.
    42     /// </summary>
    43     private System.ComponentModel.IContainer components = null;
    44 
    45     /// <summary>
    46     /// Clean up any resources being used.
    47     /// </summary>
    48     /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    49     protected override void Dispose(bool disposing) {
    50       if (disposing && (components != null)) {
    51         components.Dispose();
    52       }
    53       base.Dispose(disposing);
    54     }
    55 
    56     #region Windows Form Designer generated code
    57 
    58     /// <summary>
    59     /// Required method for Designer support - do not modify
    60     /// the contents of this method with the code editor.
    61     /// </summary>
    62     private void InitializeComponent() {
    63       this.components = new System.ComponentModel.Container();
    64       System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
    65       this.treeView = new Aga.Controls.Tree.TreeViewAdv();
    66       this.sensor = new Aga.Controls.Tree.TreeColumn();
    67       this.value = new Aga.Controls.Tree.TreeColumn();
    68       this.min = new Aga.Controls.Tree.TreeColumn();
    69       this.max = new Aga.Controls.Tree.TreeColumn();
    70       this.limit = new Aga.Controls.Tree.TreeColumn();
    71       this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
    72       this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
    73       this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
    74       this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
    75       this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
    76       this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
    77       this.nodeTextBoxLimit = new Aga.Controls.Tree.NodeControls.NodeTextBox();
    78       this.menuStrip = new System.Windows.Forms.MenuStrip();
    79       this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    80       this.saveReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    81       this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    82       this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    83       this.hiddenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    84       this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    85       this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
    86       this.columnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    87       this.valueMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    88       this.minMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    89       this.maxMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    90       this.limitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    91       this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    92       this.startMinMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    93       this.minTrayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    94       this.startupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    95       this.separatorMenuItem = new System.Windows.Forms.ToolStripSeparator();
    96       this.temperatureUnitsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    97       this.celciusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    98       this.fahrenheitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    99       this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
   100       this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   101       this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   102       this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   103       this.splitContainer = new System.Windows.Forms.SplitContainer();
   104       this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
   105       this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
   106       this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
   107       this.timer = new System.Windows.Forms.Timer(this.components);
   108       this.menuStrip.SuspendLayout();
   109       this.splitContainer.Panel1.SuspendLayout();
   110       this.splitContainer.Panel2.SuspendLayout();
   111       this.splitContainer.SuspendLayout();
   112       this.SuspendLayout();
   113       // 
   114       // treeView
   115       // 
   116       this.treeView.BackColor = System.Drawing.SystemColors.Window;
   117       this.treeView.Columns.Add(this.sensor);
   118       this.treeView.Columns.Add(this.value);
   119       this.treeView.Columns.Add(this.min);
   120       this.treeView.Columns.Add(this.max);
   121       this.treeView.Columns.Add(this.limit);
   122       this.treeView.DefaultToolTipProvider = null;
   123       this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
   124       this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
   125       this.treeView.FullRowSelect = true;
   126       this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
   127       this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
   128       this.treeView.Location = new System.Drawing.Point(0, 0);
   129       this.treeView.Model = null;
   130       this.treeView.Name = "treeView";
   131       this.treeView.NodeControls.Add(this.nodeImage);
   132       this.treeView.NodeControls.Add(this.nodeCheckBox);
   133       this.treeView.NodeControls.Add(this.nodeTextBoxText);
   134       this.treeView.NodeControls.Add(this.nodeTextBoxValue);
   135       this.treeView.NodeControls.Add(this.nodeTextBoxMin);
   136       this.treeView.NodeControls.Add(this.nodeTextBoxMax);
   137       this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
   138       this.treeView.RowHeight = 18;
   139       this.treeView.SelectedNode = null;
   140       this.treeView.Size = new System.Drawing.Size(410, 488);
   141       this.treeView.TabIndex = 0;
   142       this.treeView.Text = "treeView";
   143       this.treeView.UseColumns = true;
   144       this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
   145       this.treeView.Click += new System.EventHandler(this.treeView_Click);
   146       // 
   147       // sensor
   148       // 
   149       this.sensor.Header = "Sensor";
   150       this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
   151       this.sensor.TooltipText = null;
   152       this.sensor.Width = 250;
   153       // 
   154       // value
   155       // 
   156       this.value.Header = "Value";
   157       this.value.SortOrder = System.Windows.Forms.SortOrder.None;
   158       this.value.TooltipText = null;
   159       this.value.Width = 100;
   160       // 
   161       // min
   162       // 
   163       this.min.Header = "Min";
   164       this.min.SortOrder = System.Windows.Forms.SortOrder.None;
   165       this.min.TooltipText = null;
   166       this.min.Width = 100;
   167       // 
   168       // max
   169       // 
   170       this.max.Header = "Max";
   171       this.max.SortOrder = System.Windows.Forms.SortOrder.None;
   172       this.max.TooltipText = null;
   173       this.max.Width = 100;
   174       // 
   175       // limit
   176       // 
   177       this.limit.Header = "Limit";
   178       this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
   179       this.limit.TooltipText = null;
   180       this.limit.Width = 100;
   181       // 
   182       // nodeImage
   183       // 
   184       this.nodeImage.DataPropertyName = "Image";
   185       this.nodeImage.LeftMargin = 1;
   186       this.nodeImage.ParentColumn = this.sensor;
   187       this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
   188       // 
   189       // nodeCheckBox
   190       // 
   191       this.nodeCheckBox.DataPropertyName = "Plot";
   192       this.nodeCheckBox.EditEnabled = true;
   193       this.nodeCheckBox.LeftMargin = 3;
   194       this.nodeCheckBox.ParentColumn = this.sensor;
   195       // 
   196       // nodeTextBoxText
   197       // 
   198       this.nodeTextBoxText.DataPropertyName = "Text";
   199       this.nodeTextBoxText.EditEnabled = true;
   200       this.nodeTextBoxText.IncrementalSearchEnabled = true;
   201       this.nodeTextBoxText.LeftMargin = 3;
   202       this.nodeTextBoxText.ParentColumn = this.sensor;
   203       // 
   204       // nodeTextBoxValue
   205       // 
   206       this.nodeTextBoxValue.DataPropertyName = "Value";
   207       this.nodeTextBoxValue.IncrementalSearchEnabled = true;
   208       this.nodeTextBoxValue.LeftMargin = 3;
   209       this.nodeTextBoxValue.ParentColumn = this.value;
   210       // 
   211       // nodeTextBoxMin
   212       // 
   213       this.nodeTextBoxMin.DataPropertyName = "Min";
   214       this.nodeTextBoxMin.IncrementalSearchEnabled = true;
   215       this.nodeTextBoxMin.LeftMargin = 3;
   216       this.nodeTextBoxMin.ParentColumn = this.min;
   217       // 
   218       // nodeTextBoxMax
   219       // 
   220       this.nodeTextBoxMax.DataPropertyName = "Max";
   221       this.nodeTextBoxMax.IncrementalSearchEnabled = true;
   222       this.nodeTextBoxMax.LeftMargin = 3;
   223       this.nodeTextBoxMax.ParentColumn = this.max;
   224       // 
   225       // nodeTextBoxLimit
   226       // 
   227       this.nodeTextBoxLimit.DataPropertyName = "Limit";
   228       this.nodeTextBoxLimit.EditEnabled = true;
   229       this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
   230       this.nodeTextBoxLimit.LeftMargin = 3;
   231       this.nodeTextBoxLimit.ParentColumn = this.limit;
   232       // 
   233       // menuStrip
   234       // 
   235       this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   236             this.fileToolStripMenuItem,
   237             this.viewToolStripMenuItem,
   238             this.optionsToolStripMenuItem,
   239             this.helpToolStripMenuItem});
   240       this.menuStrip.Location = new System.Drawing.Point(0, 0);
   241       this.menuStrip.Name = "menuStrip";
   242       this.menuStrip.Size = new System.Drawing.Size(410, 24);
   243       this.menuStrip.TabIndex = 1;
   244       this.menuStrip.Text = "menuStrip1";
   245       // 
   246       // fileToolStripMenuItem
   247       // 
   248       this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   249             this.saveReportToolStripMenuItem,
   250             this.exitToolStripMenuItem});
   251       this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
   252       this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
   253       this.fileToolStripMenuItem.Text = "File";
   254       // 
   255       // saveReportToolStripMenuItem
   256       // 
   257       this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
   258       this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
   259       this.saveReportToolStripMenuItem.Text = "Save Report...";
   260       this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
   261       // 
   262       // exitToolStripMenuItem
   263       // 
   264       this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
   265       this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
   266       this.exitToolStripMenuItem.Text = "Exit";
   267       this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitClick);
   268       // 
   269       // viewToolStripMenuItem
   270       // 
   271       this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   272             this.hiddenMenuItem,
   273             this.plotMenuItem,
   274             this.toolStripMenuItem1,
   275             this.columnsToolStripMenuItem});
   276       this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
   277       this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
   278       this.viewToolStripMenuItem.Text = "View";
   279       // 
   280       // hiddenMenuItem
   281       // 
   282       this.hiddenMenuItem.CheckOnClick = true;
   283       this.hiddenMenuItem.Name = "hiddenMenuItem";
   284       this.hiddenMenuItem.Size = new System.Drawing.Size(188, 22);
   285       this.hiddenMenuItem.Text = "Show Hidden Sensors";
   286       this.hiddenMenuItem.CheckedChanged += new System.EventHandler(this.hiddenSensorsMenuItem_CheckedChanged);
   287       // 
   288       // plotMenuItem
   289       // 
   290       this.plotMenuItem.Checked = true;
   291       this.plotMenuItem.CheckOnClick = true;
   292       this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
   293       this.plotMenuItem.Name = "plotMenuItem";
   294       this.plotMenuItem.Size = new System.Drawing.Size(188, 22);
   295       this.plotMenuItem.Text = "Show Plot";
   296       this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
   297       // 
   298       // toolStripMenuItem1
   299       // 
   300       this.toolStripMenuItem1.Name = "toolStripMenuItem1";
   301       this.toolStripMenuItem1.Size = new System.Drawing.Size(185, 6);
   302       // 
   303       // columnsToolStripMenuItem
   304       // 
   305       this.columnsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   306             this.valueMenuItem,
   307             this.minMenuItem,
   308             this.maxMenuItem,
   309             this.limitMenuItem});
   310       this.columnsToolStripMenuItem.Name = "columnsToolStripMenuItem";
   311       this.columnsToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
   312       this.columnsToolStripMenuItem.Text = "Columns";
   313       // 
   314       // valueMenuItem
   315       // 
   316       this.valueMenuItem.Checked = true;
   317       this.valueMenuItem.CheckOnClick = true;
   318       this.valueMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
   319       this.valueMenuItem.Name = "valueMenuItem";
   320       this.valueMenuItem.Size = new System.Drawing.Size(103, 22);
   321       this.valueMenuItem.Text = "Value";
   322       this.valueMenuItem.CheckedChanged += new System.EventHandler(this.valueMenuItem_CheckedChanged);
   323       // 
   324       // minMenuItem
   325       // 
   326       this.minMenuItem.Checked = true;
   327       this.minMenuItem.CheckOnClick = true;
   328       this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
   329       this.minMenuItem.Name = "minMenuItem";
   330       this.minMenuItem.Size = new System.Drawing.Size(103, 22);
   331       this.minMenuItem.Text = "Min";
   332       this.minMenuItem.CheckedChanged += new System.EventHandler(this.minMenuItem_CheckedChanged);
   333       // 
   334       // maxMenuItem
   335       // 
   336       this.maxMenuItem.Checked = true;
   337       this.maxMenuItem.CheckOnClick = true;
   338       this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
   339       this.maxMenuItem.Name = "maxMenuItem";
   340       this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
   341       this.maxMenuItem.Text = "Max";
   342       this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxMenuItem_CheckedChanged);
   343       // 
   344       // limitMenuItem
   345       // 
   346       this.limitMenuItem.Checked = true;
   347       this.limitMenuItem.CheckOnClick = true;
   348       this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
   349       this.limitMenuItem.Name = "limitMenuItem";
   350       this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
   351       this.limitMenuItem.Text = "Limit";
   352       this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitMenuItem_CheckedChanged);
   353       // 
   354       // optionsToolStripMenuItem
   355       // 
   356       this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   357             this.startMinMenuItem,
   358             this.minTrayMenuItem,
   359             this.startupMenuItem,
   360             this.separatorMenuItem,
   361             this.temperatureUnitsToolStripMenuItem,
   362             this.toolStripMenuItem4,
   363             this.hddMenuItem});
   364       this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
   365       this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
   366       this.optionsToolStripMenuItem.Text = "Options";
   367       // 
   368       // startMinMenuItem
   369       // 
   370       this.startMinMenuItem.CheckOnClick = true;
   371       this.startMinMenuItem.Name = "startMinMenuItem";
   372       this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
   373       this.startMinMenuItem.Text = "Start Minimized";
   374       // 
   375       // minTrayMenuItem
   376       // 
   377       this.minTrayMenuItem.CheckOnClick = true;
   378       this.minTrayMenuItem.Name = "minTrayMenuItem";
   379       this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
   380       this.minTrayMenuItem.Text = "Minimize To Tray";
   381       this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
   382       // 
   383       // startupMenuItem
   384       // 
   385       this.startupMenuItem.CheckOnClick = true;
   386       this.startupMenuItem.Name = "startupMenuItem";
   387       this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
   388       this.startupMenuItem.Text = "Run On Windows Startup";
   389       this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
   390       // 
   391       // separatorMenuItem
   392       // 
   393       this.separatorMenuItem.Name = "separatorMenuItem";
   394       this.separatorMenuItem.Size = new System.Drawing.Size(204, 6);
   395       // 
   396       // temperatureUnitsToolStripMenuItem
   397       // 
   398       this.temperatureUnitsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   399             this.celciusToolStripMenuItem,
   400             this.fahrenheitToolStripMenuItem});
   401       this.temperatureUnitsToolStripMenuItem.Name = "temperatureUnitsToolStripMenuItem";
   402       this.temperatureUnitsToolStripMenuItem.Size = new System.Drawing.Size(207, 22);
   403       this.temperatureUnitsToolStripMenuItem.Text = "Temperature Unit";
   404       // 
   405       // celciusToolStripMenuItem
   406       // 
   407       this.celciusToolStripMenuItem.Name = "celciusToolStripMenuItem";
   408       this.celciusToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
   409       this.celciusToolStripMenuItem.Text = "Celcius";
   410       this.celciusToolStripMenuItem.Click += new System.EventHandler(this.celciusToolStripMenuItem_Click);
   411       // 
   412       // fahrenheitToolStripMenuItem
   413       // 
   414       this.fahrenheitToolStripMenuItem.Name = "fahrenheitToolStripMenuItem";
   415       this.fahrenheitToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
   416       this.fahrenheitToolStripMenuItem.Text = "Fahrenheit";
   417       this.fahrenheitToolStripMenuItem.Click += new System.EventHandler(this.fahrenheitToolStripMenuItem_Click);
   418       // 
   419       // toolStripMenuItem4
   420       // 
   421       this.toolStripMenuItem4.Name = "toolStripMenuItem4";
   422       this.toolStripMenuItem4.Size = new System.Drawing.Size(204, 6);
   423       // 
   424       // hddMenuItem
   425       // 
   426       this.hddMenuItem.CheckOnClick = true;
   427       this.hddMenuItem.Name = "hddMenuItem";
   428       this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
   429       this.hddMenuItem.Text = "Read HDD sensors";
   430       this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
   431       // 
   432       // helpToolStripMenuItem
   433       // 
   434       this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
   435             this.aboutToolStripMenuItem});
   436       this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
   437       this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
   438       this.helpToolStripMenuItem.Text = "Help";
   439       // 
   440       // aboutToolStripMenuItem
   441       // 
   442       this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
   443       this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
   444       this.aboutToolStripMenuItem.Text = "About";
   445       this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
   446       // 
   447       // splitContainer
   448       // 
   449       this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
   450       this.splitContainer.Location = new System.Drawing.Point(0, 24);
   451       this.splitContainer.Name = "splitContainer";
   452       this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
   453       // 
   454       // splitContainer.Panel1
   455       // 
   456       this.splitContainer.Panel1.Controls.Add(this.treeView);
   457       // 
   458       // splitContainer.Panel2
   459       // 
   460       this.splitContainer.Panel2.Controls.Add(this.plotPanel);
   461       this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
   462       this.splitContainer.Size = new System.Drawing.Size(410, 662);
   463       this.splitContainer.SplitterDistance = 488;
   464       this.splitContainer.SplitterWidth = 3;
   465       this.splitContainer.TabIndex = 3;
   466       // 
   467       // plotPanel
   468       // 
   469       this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
   470       this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
   471       this.plotPanel.Location = new System.Drawing.Point(0, 0);
   472       this.plotPanel.Name = "plotPanel";
   473       this.plotPanel.Size = new System.Drawing.Size(410, 171);
   474       this.plotPanel.TabIndex = 0;
   475       // 
   476       // sensorContextMenuStrip
   477       // 
   478       this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
   479       this.sensorContextMenuStrip.Size = new System.Drawing.Size(153, 26);
   480       // 
   481       // saveFileDialog
   482       // 
   483       this.saveFileDialog.DefaultExt = "txt";
   484       this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
   485       this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
   486       this.saveFileDialog.RestoreDirectory = true;
   487       this.saveFileDialog.Title = "Save Report As";
   488       // 
   489       // timer
   490       // 
   491       this.timer.Interval = 1000;
   492       this.timer.Tick += new System.EventHandler(this.timer_Tick);
   493       // 
   494       // MainForm
   495       // 
   496       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   497       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   498       this.ClientSize = new System.Drawing.Size(410, 686);
   499       this.Controls.Add(this.splitContainer);
   500       this.Controls.Add(this.menuStrip);
   501       this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
   502       this.MainMenuStrip = this.menuStrip;
   503       this.Name = "MainForm";
   504       this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
   505       this.Text = "Open Hardware Monitor";
   506       this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
   507       this.menuStrip.ResumeLayout(false);
   508       this.menuStrip.PerformLayout();
   509       this.splitContainer.Panel1.ResumeLayout(false);
   510       this.splitContainer.Panel2.ResumeLayout(false);
   511       this.splitContainer.ResumeLayout(false);
   512       this.ResumeLayout(false);
   513       this.PerformLayout();
   514 
   515     }
   516 
   517     #endregion
   518 
   519     private Aga.Controls.Tree.TreeViewAdv treeView;
   520     private System.Windows.Forms.MenuStrip menuStrip;
   521     private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
   522     private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
   523     private Aga.Controls.Tree.TreeColumn sensor;
   524     private Aga.Controls.Tree.TreeColumn value;
   525     private Aga.Controls.Tree.TreeColumn min;
   526     private Aga.Controls.Tree.TreeColumn max;
   527     private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
   528     private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
   529     private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
   530     private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
   531     private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
   532     private System.Windows.Forms.SplitContainer splitContainer;
   533     private PlotPanel plotPanel;
   534     private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
   535     private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
   536     private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
   537     private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
   538     private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
   539     private Aga.Controls.Tree.TreeColumn limit;
   540     private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
   541     private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
   542     private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
   543     private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
   544     private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
   545     private System.Windows.Forms.ToolStripSeparator separatorMenuItem;
   546     private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
   547     private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
   548     private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
   549     private System.Windows.Forms.SaveFileDialog saveFileDialog;
   550     private System.Windows.Forms.Timer timer;
   551     private System.Windows.Forms.ToolStripMenuItem hiddenMenuItem;
   552     private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
   553     private System.Windows.Forms.ToolStripMenuItem columnsToolStripMenuItem;
   554     private System.Windows.Forms.ToolStripMenuItem valueMenuItem;
   555     private System.Windows.Forms.ToolStripMenuItem minMenuItem;
   556     private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
   557     private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
   558     private System.Windows.Forms.ToolStripMenuItem temperatureUnitsToolStripMenuItem;
   559     private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
   560     private System.Windows.Forms.ToolStripMenuItem celciusToolStripMenuItem;
   561     private System.Windows.Forms.ToolStripMenuItem fahrenheitToolStripMenuItem;
   562   }
   563 }
   564