GUI/MainForm.Designer.cs
author moel.mich
Sat, 15 May 2010 11:34:36 +0000
changeset 116 c92e98bc2073
parent 86 b4f0f206173d
child 117 14329d236f05
permissions -rw-r--r--
Fixed the following Exception:

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