Fixed Issue 64.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
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
9 http://www.mozilla.org/MPL/
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.
15 The Original Code is the Open Hardware Monitor code.
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.
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.
38 namespace OpenHardwareMonitor.GUI {
39 partial class MainForm {
41 /// Required designer variable.
43 private System.ComponentModel.IContainer components = null;
46 /// Clean up any resources being used.
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)) {
53 base.Dispose(disposing);
56 #region Windows Form Designer generated code
59 /// Required method for Designer support - do not modify
60 /// the contents of this method with the code editor.
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.notifyContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
106 this.hideShowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
107 this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
108 this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
109 this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
110 this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
111 this.timer = new System.Windows.Forms.Timer(this.components);
112 this.menuStrip.SuspendLayout();
113 this.splitContainer.Panel1.SuspendLayout();
114 this.splitContainer.Panel2.SuspendLayout();
115 this.splitContainer.SuspendLayout();
116 this.notifyContextMenuStrip.SuspendLayout();
117 this.SuspendLayout();
121 this.treeView.BackColor = System.Drawing.SystemColors.Window;
122 this.treeView.Columns.Add(this.sensor);
123 this.treeView.Columns.Add(this.value);
124 this.treeView.Columns.Add(this.min);
125 this.treeView.Columns.Add(this.max);
126 this.treeView.Columns.Add(this.limit);
127 this.treeView.DefaultToolTipProvider = null;
128 this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
129 this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
130 this.treeView.FullRowSelect = true;
131 this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
132 this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
133 this.treeView.Location = new System.Drawing.Point(0, 0);
134 this.treeView.Model = null;
135 this.treeView.Name = "treeView";
136 this.treeView.NodeControls.Add(this.nodeImage);
137 this.treeView.NodeControls.Add(this.nodeCheckBox);
138 this.treeView.NodeControls.Add(this.nodeTextBoxText);
139 this.treeView.NodeControls.Add(this.nodeTextBoxValue);
140 this.treeView.NodeControls.Add(this.nodeTextBoxMin);
141 this.treeView.NodeControls.Add(this.nodeTextBoxMax);
142 this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
143 this.treeView.RowHeight = 18;
144 this.treeView.SelectedNode = null;
145 this.treeView.Size = new System.Drawing.Size(410, 488);
146 this.treeView.TabIndex = 0;
147 this.treeView.Text = "treeView";
148 this.treeView.UseColumns = true;
149 this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
150 this.treeView.Click += new System.EventHandler(this.treeView_Click);
154 this.sensor.Header = "Sensor";
155 this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
156 this.sensor.TooltipText = null;
157 this.sensor.Width = 250;
161 this.value.Header = "Value";
162 this.value.SortOrder = System.Windows.Forms.SortOrder.None;
163 this.value.TooltipText = null;
164 this.value.Width = 100;
168 this.min.Header = "Min";
169 this.min.SortOrder = System.Windows.Forms.SortOrder.None;
170 this.min.TooltipText = null;
171 this.min.Width = 100;
175 this.max.Header = "Max";
176 this.max.SortOrder = System.Windows.Forms.SortOrder.None;
177 this.max.TooltipText = null;
178 this.max.Width = 100;
182 this.limit.Header = "Limit";
183 this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
184 this.limit.TooltipText = null;
185 this.limit.Width = 100;
189 this.nodeImage.DataPropertyName = "Image";
190 this.nodeImage.LeftMargin = 1;
191 this.nodeImage.ParentColumn = this.sensor;
192 this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
196 this.nodeCheckBox.DataPropertyName = "Plot";
197 this.nodeCheckBox.EditEnabled = true;
198 this.nodeCheckBox.LeftMargin = 3;
199 this.nodeCheckBox.ParentColumn = this.sensor;
203 this.nodeTextBoxText.DataPropertyName = "Text";
204 this.nodeTextBoxText.EditEnabled = true;
205 this.nodeTextBoxText.IncrementalSearchEnabled = true;
206 this.nodeTextBoxText.LeftMargin = 3;
207 this.nodeTextBoxText.ParentColumn = this.sensor;
211 this.nodeTextBoxValue.DataPropertyName = "Value";
212 this.nodeTextBoxValue.IncrementalSearchEnabled = true;
213 this.nodeTextBoxValue.LeftMargin = 3;
214 this.nodeTextBoxValue.ParentColumn = this.value;
218 this.nodeTextBoxMin.DataPropertyName = "Min";
219 this.nodeTextBoxMin.IncrementalSearchEnabled = true;
220 this.nodeTextBoxMin.LeftMargin = 3;
221 this.nodeTextBoxMin.ParentColumn = this.min;
225 this.nodeTextBoxMax.DataPropertyName = "Max";
226 this.nodeTextBoxMax.IncrementalSearchEnabled = true;
227 this.nodeTextBoxMax.LeftMargin = 3;
228 this.nodeTextBoxMax.ParentColumn = this.max;
232 this.nodeTextBoxLimit.DataPropertyName = "Limit";
233 this.nodeTextBoxLimit.EditEnabled = true;
234 this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
235 this.nodeTextBoxLimit.LeftMargin = 3;
236 this.nodeTextBoxLimit.ParentColumn = this.limit;
240 this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
241 this.fileToolStripMenuItem,
242 this.viewToolStripMenuItem,
243 this.optionsToolStripMenuItem,
244 this.helpToolStripMenuItem});
245 this.menuStrip.Location = new System.Drawing.Point(0, 0);
246 this.menuStrip.Name = "menuStrip";
247 this.menuStrip.Size = new System.Drawing.Size(410, 24);
248 this.menuStrip.TabIndex = 1;
249 this.menuStrip.Text = "menuStrip1";
251 // fileToolStripMenuItem
253 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
254 this.saveReportToolStripMenuItem,
255 this.exitToolStripMenuItem});
256 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
257 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
258 this.fileToolStripMenuItem.Text = "File";
260 // saveReportToolStripMenuItem
262 this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
263 this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
264 this.saveReportToolStripMenuItem.Text = "Save Report...";
265 this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
267 // exitToolStripMenuItem
269 this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
270 this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
271 this.exitToolStripMenuItem.Text = "Exit";
272 this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
274 // viewToolStripMenuItem
276 this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
279 this.toolStripMenuItem1,
280 this.columnsToolStripMenuItem});
281 this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
282 this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
283 this.viewToolStripMenuItem.Text = "View";
287 this.hiddenMenuItem.CheckOnClick = true;
288 this.hiddenMenuItem.Name = "hiddenMenuItem";
289 this.hiddenMenuItem.Size = new System.Drawing.Size(188, 22);
290 this.hiddenMenuItem.Text = "Show Hidden Sensors";
291 this.hiddenMenuItem.CheckedChanged += new System.EventHandler(this.hiddenSensorsMenuItem_CheckedChanged);
295 this.plotMenuItem.Checked = true;
296 this.plotMenuItem.CheckOnClick = true;
297 this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
298 this.plotMenuItem.Name = "plotMenuItem";
299 this.plotMenuItem.Size = new System.Drawing.Size(188, 22);
300 this.plotMenuItem.Text = "Show Plot";
301 this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
303 // toolStripMenuItem1
305 this.toolStripMenuItem1.Name = "toolStripMenuItem1";
306 this.toolStripMenuItem1.Size = new System.Drawing.Size(185, 6);
308 // columnsToolStripMenuItem
310 this.columnsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
314 this.limitMenuItem});
315 this.columnsToolStripMenuItem.Name = "columnsToolStripMenuItem";
316 this.columnsToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
317 this.columnsToolStripMenuItem.Text = "Columns";
321 this.valueMenuItem.Checked = true;
322 this.valueMenuItem.CheckOnClick = true;
323 this.valueMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
324 this.valueMenuItem.Name = "valueMenuItem";
325 this.valueMenuItem.Size = new System.Drawing.Size(103, 22);
326 this.valueMenuItem.Text = "Value";
327 this.valueMenuItem.CheckedChanged += new System.EventHandler(this.valueMenuItem_CheckedChanged);
331 this.minMenuItem.Checked = true;
332 this.minMenuItem.CheckOnClick = true;
333 this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
334 this.minMenuItem.Name = "minMenuItem";
335 this.minMenuItem.Size = new System.Drawing.Size(103, 22);
336 this.minMenuItem.Text = "Min";
337 this.minMenuItem.CheckedChanged += new System.EventHandler(this.minMenuItem_CheckedChanged);
341 this.maxMenuItem.Checked = true;
342 this.maxMenuItem.CheckOnClick = true;
343 this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
344 this.maxMenuItem.Name = "maxMenuItem";
345 this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
346 this.maxMenuItem.Text = "Max";
347 this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxMenuItem_CheckedChanged);
351 this.limitMenuItem.Checked = true;
352 this.limitMenuItem.CheckOnClick = true;
353 this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
354 this.limitMenuItem.Name = "limitMenuItem";
355 this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
356 this.limitMenuItem.Text = "Limit";
357 this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitMenuItem_CheckedChanged);
359 // optionsToolStripMenuItem
361 this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
362 this.startMinMenuItem,
363 this.minTrayMenuItem,
364 this.startupMenuItem,
365 this.separatorMenuItem,
366 this.temperatureUnitsToolStripMenuItem,
367 this.toolStripMenuItem4,
369 this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
370 this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
371 this.optionsToolStripMenuItem.Text = "Options";
375 this.startMinMenuItem.CheckOnClick = true;
376 this.startMinMenuItem.Name = "startMinMenuItem";
377 this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
378 this.startMinMenuItem.Text = "Start Minimized";
382 this.minTrayMenuItem.CheckOnClick = true;
383 this.minTrayMenuItem.Name = "minTrayMenuItem";
384 this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
385 this.minTrayMenuItem.Text = "Minimize To Tray";
386 this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
390 this.startupMenuItem.CheckOnClick = true;
391 this.startupMenuItem.Name = "startupMenuItem";
392 this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
393 this.startupMenuItem.Text = "Run On Windows Startup";
394 this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
396 // toolStripMenuItem3
398 this.separatorMenuItem.Name = "toolStripMenuItem3";
399 this.separatorMenuItem.Size = new System.Drawing.Size(204, 6);
401 // temperatureUnitsToolStripMenuItem
403 this.temperatureUnitsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
404 this.celciusToolStripMenuItem,
405 this.fahrenheitToolStripMenuItem});
406 this.temperatureUnitsToolStripMenuItem.Name = "temperatureUnitsToolStripMenuItem";
407 this.temperatureUnitsToolStripMenuItem.Size = new System.Drawing.Size(207, 22);
408 this.temperatureUnitsToolStripMenuItem.Text = "Temperature Unit";
410 // celciusToolStripMenuItem
412 this.celciusToolStripMenuItem.Name = "celciusToolStripMenuItem";
413 this.celciusToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
414 this.celciusToolStripMenuItem.Text = "Celcius";
415 this.celciusToolStripMenuItem.Click += new System.EventHandler(this.celciusToolStripMenuItem_Click);
417 // fahrenheitToolStripMenuItem
419 this.fahrenheitToolStripMenuItem.Name = "fahrenheitToolStripMenuItem";
420 this.fahrenheitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
421 this.fahrenheitToolStripMenuItem.Text = "Fahrenheit";
422 this.fahrenheitToolStripMenuItem.Click += new System.EventHandler(this.fahrenheitToolStripMenuItem_Click);
424 // toolStripMenuItem4
426 this.toolStripMenuItem4.Name = "toolStripMenuItem4";
427 this.toolStripMenuItem4.Size = new System.Drawing.Size(204, 6);
431 this.hddMenuItem.CheckOnClick = true;
432 this.hddMenuItem.Name = "hddMenuItem";
433 this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
434 this.hddMenuItem.Text = "Read HDD sensors";
435 this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
437 // helpToolStripMenuItem
439 this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
440 this.aboutToolStripMenuItem});
441 this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
442 this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
443 this.helpToolStripMenuItem.Text = "Help";
445 // aboutToolStripMenuItem
447 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
448 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
449 this.aboutToolStripMenuItem.Text = "About";
450 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
454 this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
455 this.splitContainer.Location = new System.Drawing.Point(0, 24);
456 this.splitContainer.Name = "splitContainer";
457 this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
459 // splitContainer.Panel1
461 this.splitContainer.Panel1.Controls.Add(this.treeView);
463 // splitContainer.Panel2
465 this.splitContainer.Panel2.Controls.Add(this.plotPanel);
466 this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
467 this.splitContainer.Size = new System.Drawing.Size(410, 662);
468 this.splitContainer.SplitterDistance = 488;
469 this.splitContainer.SplitterWidth = 3;
470 this.splitContainer.TabIndex = 3;
474 this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
475 this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
476 this.plotPanel.Location = new System.Drawing.Point(0, 0);
477 this.plotPanel.Name = "plotPanel";
478 this.plotPanel.Size = new System.Drawing.Size(410, 171);
479 this.plotPanel.TabIndex = 0;
481 // notifyContextMenuStrip
483 this.notifyContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
484 this.hideShowToolStripMenuItem,
485 this.toolStripMenuItem2,
486 this.exitToolStripMenuItem1});
487 this.notifyContextMenuStrip.Name = "notifyContextMenuStrip";
488 this.notifyContextMenuStrip.Size = new System.Drawing.Size(134, 54);
490 // hideShowToolStripMenuItem
492 this.hideShowToolStripMenuItem.Name = "hideShowToolStripMenuItem";
493 this.hideShowToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
494 this.hideShowToolStripMenuItem.Text = "Hide/Show";
495 this.hideShowToolStripMenuItem.Click += new System.EventHandler(this.hideShowClick);
497 // toolStripMenuItem2
499 this.toolStripMenuItem2.Name = "toolStripMenuItem2";
500 this.toolStripMenuItem2.Size = new System.Drawing.Size(130, 6);
502 // exitToolStripMenuItem1
504 this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
505 this.exitToolStripMenuItem1.Size = new System.Drawing.Size(133, 22);
506 this.exitToolStripMenuItem1.Text = "Exit";
507 this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
509 // sensorContextMenuStrip
511 this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
512 this.sensorContextMenuStrip.Size = new System.Drawing.Size(61, 4);
516 this.saveFileDialog.DefaultExt = "txt";
517 this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
518 this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
519 this.saveFileDialog.RestoreDirectory = true;
520 this.saveFileDialog.Title = "Save Report As";
524 this.timer.Interval = 1000;
525 this.timer.Tick += new System.EventHandler(this.timer_Tick);
529 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
530 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
531 this.ClientSize = new System.Drawing.Size(410, 686);
532 this.Controls.Add(this.splitContainer);
533 this.Controls.Add(this.menuStrip);
534 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
535 this.MainMenuStrip = this.menuStrip;
536 this.Name = "MainForm";
537 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
538 this.Text = "Open Hardware Monitor";
539 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
540 this.menuStrip.ResumeLayout(false);
541 this.menuStrip.PerformLayout();
542 this.splitContainer.Panel1.ResumeLayout(false);
543 this.splitContainer.Panel2.ResumeLayout(false);
544 this.splitContainer.ResumeLayout(false);
545 this.notifyContextMenuStrip.ResumeLayout(false);
546 this.ResumeLayout(false);
547 this.PerformLayout();
553 private Aga.Controls.Tree.TreeViewAdv treeView;
554 private System.Windows.Forms.MenuStrip menuStrip;
555 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
556 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
557 private Aga.Controls.Tree.TreeColumn sensor;
558 private Aga.Controls.Tree.TreeColumn value;
559 private Aga.Controls.Tree.TreeColumn min;
560 private Aga.Controls.Tree.TreeColumn max;
561 private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
562 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
563 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
564 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
565 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
566 private System.Windows.Forms.SplitContainer splitContainer;
567 private PlotPanel plotPanel;
568 private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
569 private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
570 private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
571 private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
572 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
573 private Aga.Controls.Tree.TreeColumn limit;
574 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
575 private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
576 private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
577 private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
578 private System.Windows.Forms.ContextMenuStrip notifyContextMenuStrip;
579 private System.Windows.Forms.ToolStripMenuItem hideShowToolStripMenuItem;
580 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
581 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem1;
582 private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
583 private System.Windows.Forms.ToolStripSeparator separatorMenuItem;
584 private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
585 private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
586 private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
587 private System.Windows.Forms.SaveFileDialog saveFileDialog;
588 private System.Windows.Forms.Timer timer;
589 private System.Windows.Forms.ToolStripMenuItem hiddenMenuItem;
590 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
591 private System.Windows.Forms.ToolStripMenuItem columnsToolStripMenuItem;
592 private System.Windows.Forms.ToolStripMenuItem valueMenuItem;
593 private System.Windows.Forms.ToolStripMenuItem minMenuItem;
594 private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
595 private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
596 private System.Windows.Forms.ToolStripMenuItem temperatureUnitsToolStripMenuItem;
597 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
598 private System.Windows.Forms.ToolStripMenuItem celciusToolStripMenuItem;
599 private System.Windows.Forms.ToolStripMenuItem fahrenheitToolStripMenuItem;