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.columnsContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
moel@1
|
79 |
this.valueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
80 |
this.minMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
81 |
this.maxMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
82 |
this.limitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
83 |
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
moel@1
|
84 |
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
85 |
this.saveReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
86 |
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
87 |
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
88 |
this.sensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
89 |
this.voltMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
90 |
this.clocksMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@27
|
91 |
this.tempMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@24
|
92 |
this.loadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
93 |
this.fansMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@62
|
94 |
this.flowsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
95 |
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
moel@1
|
96 |
this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
97 |
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@55
|
98 |
this.startMinMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@28
|
99 |
this.minTrayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@82
|
100 |
this.startupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@28
|
101 |
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
|
moel@1
|
102 |
this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
103 |
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
104 |
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@1
|
105 |
this.timer = new System.Windows.Forms.Timer(this.components);
|
moel@1
|
106 |
this.splitContainer = new System.Windows.Forms.SplitContainer();
|
moel@63
|
107 |
this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
|
moel@27
|
108 |
this.notifyContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
moel@82
|
109 |
this.hideShowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
moel@27
|
110 |
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
|
moel@27
|
111 |
this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
moel@40
|
112 |
this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
moel@1
|
113 |
this.columnsContextMenuStrip.SuspendLayout();
|
moel@1
|
114 |
this.menuStrip.SuspendLayout();
|
moel@1
|
115 |
this.splitContainer.Panel1.SuspendLayout();
|
moel@1
|
116 |
this.splitContainer.Panel2.SuspendLayout();
|
moel@1
|
117 |
this.splitContainer.SuspendLayout();
|
moel@27
|
118 |
this.notifyContextMenuStrip.SuspendLayout();
|
moel@1
|
119 |
this.SuspendLayout();
|
moel@1
|
120 |
//
|
moel@1
|
121 |
// treeView
|
moel@1
|
122 |
//
|
moel@1
|
123 |
this.treeView.BackColor = System.Drawing.SystemColors.Window;
|
moel@1
|
124 |
this.treeView.Columns.Add(this.sensor);
|
moel@1
|
125 |
this.treeView.Columns.Add(this.value);
|
moel@1
|
126 |
this.treeView.Columns.Add(this.min);
|
moel@1
|
127 |
this.treeView.Columns.Add(this.max);
|
moel@1
|
128 |
this.treeView.Columns.Add(this.limit);
|
moel@1
|
129 |
this.treeView.DefaultToolTipProvider = null;
|
moel@1
|
130 |
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
moel@1
|
131 |
this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
|
moel@1
|
132 |
this.treeView.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
moel@1
|
133 |
this.treeView.FullRowSelect = true;
|
moel@1
|
134 |
this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
|
moel@1
|
135 |
this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
|
moel@1
|
136 |
this.treeView.Location = new System.Drawing.Point(0, 0);
|
moel@1
|
137 |
this.treeView.Model = null;
|
moel@1
|
138 |
this.treeView.Name = "treeView";
|
moel@1
|
139 |
this.treeView.NodeControls.Add(this.nodeImage);
|
moel@1
|
140 |
this.treeView.NodeControls.Add(this.nodeCheckBox);
|
moel@1
|
141 |
this.treeView.NodeControls.Add(this.nodeTextBoxText);
|
moel@1
|
142 |
this.treeView.NodeControls.Add(this.nodeTextBoxValue);
|
moel@1
|
143 |
this.treeView.NodeControls.Add(this.nodeTextBoxMin);
|
moel@1
|
144 |
this.treeView.NodeControls.Add(this.nodeTextBoxMax);
|
moel@1
|
145 |
this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
|
moel@1
|
146 |
this.treeView.RowHeight = 18;
|
moel@1
|
147 |
this.treeView.SelectedNode = null;
|
moel@1
|
148 |
this.treeView.Size = new System.Drawing.Size(478, 567);
|
moel@1
|
149 |
this.treeView.TabIndex = 0;
|
moel@1
|
150 |
this.treeView.Text = "treeView";
|
moel@1
|
151 |
this.treeView.UseColumns = true;
|
moel@63
|
152 |
this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
|
moel@1
|
153 |
this.treeView.Click += new System.EventHandler(this.treeView_Click);
|
moel@1
|
154 |
//
|
moel@1
|
155 |
// sensor
|
moel@1
|
156 |
//
|
moel@1
|
157 |
this.sensor.Header = "Sensor";
|
moel@1
|
158 |
this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
|
moel@1
|
159 |
this.sensor.TooltipText = null;
|
moel@1
|
160 |
this.sensor.Width = 250;
|
moel@1
|
161 |
//
|
moel@1
|
162 |
// value
|
moel@1
|
163 |
//
|
moel@1
|
164 |
this.value.Header = "Value";
|
moel@1
|
165 |
this.value.SortOrder = System.Windows.Forms.SortOrder.None;
|
moel@1
|
166 |
this.value.TooltipText = null;
|
moel@1
|
167 |
this.value.Width = 100;
|
moel@1
|
168 |
//
|
moel@1
|
169 |
// min
|
moel@1
|
170 |
//
|
moel@1
|
171 |
this.min.Header = "Min";
|
moel@1
|
172 |
this.min.SortOrder = System.Windows.Forms.SortOrder.None;
|
moel@1
|
173 |
this.min.TooltipText = null;
|
moel@1
|
174 |
this.min.Width = 100;
|
moel@1
|
175 |
//
|
moel@1
|
176 |
// max
|
moel@1
|
177 |
//
|
moel@1
|
178 |
this.max.Header = "Max";
|
moel@1
|
179 |
this.max.SortOrder = System.Windows.Forms.SortOrder.None;
|
moel@1
|
180 |
this.max.TooltipText = null;
|
moel@1
|
181 |
this.max.Width = 100;
|
moel@1
|
182 |
//
|
moel@1
|
183 |
// limit
|
moel@1
|
184 |
//
|
moel@1
|
185 |
this.limit.Header = "Limit";
|
moel@1
|
186 |
this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
|
moel@1
|
187 |
this.limit.TooltipText = null;
|
moel@1
|
188 |
this.limit.Width = 100;
|
moel@1
|
189 |
//
|
moel@1
|
190 |
// nodeImage
|
moel@1
|
191 |
//
|
moel@1
|
192 |
this.nodeImage.DataPropertyName = "Image";
|
moel@1
|
193 |
this.nodeImage.LeftMargin = 1;
|
moel@1
|
194 |
this.nodeImage.ParentColumn = this.sensor;
|
moel@1
|
195 |
this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
|
moel@1
|
196 |
//
|
moel@1
|
197 |
// nodeCheckBox
|
moel@1
|
198 |
//
|
moel@1
|
199 |
this.nodeCheckBox.DataPropertyName = "Plot";
|
moel@1
|
200 |
this.nodeCheckBox.EditEnabled = true;
|
moel@1
|
201 |
this.nodeCheckBox.LeftMargin = 3;
|
moel@1
|
202 |
this.nodeCheckBox.ParentColumn = this.sensor;
|
moel@1
|
203 |
//
|
moel@1
|
204 |
// nodeTextBoxText
|
moel@1
|
205 |
//
|
moel@1
|
206 |
this.nodeTextBoxText.DataPropertyName = "Text";
|
moel@1
|
207 |
this.nodeTextBoxText.EditEnabled = true;
|
moel@1
|
208 |
this.nodeTextBoxText.IncrementalSearchEnabled = true;
|
moel@1
|
209 |
this.nodeTextBoxText.LeftMargin = 3;
|
moel@1
|
210 |
this.nodeTextBoxText.ParentColumn = this.sensor;
|
moel@1
|
211 |
//
|
moel@1
|
212 |
// nodeTextBoxValue
|
moel@1
|
213 |
//
|
moel@1
|
214 |
this.nodeTextBoxValue.DataPropertyName = "Value";
|
moel@1
|
215 |
this.nodeTextBoxValue.IncrementalSearchEnabled = true;
|
moel@1
|
216 |
this.nodeTextBoxValue.LeftMargin = 3;
|
moel@1
|
217 |
this.nodeTextBoxValue.ParentColumn = this.value;
|
moel@1
|
218 |
//
|
moel@1
|
219 |
// nodeTextBoxMin
|
moel@1
|
220 |
//
|
moel@1
|
221 |
this.nodeTextBoxMin.DataPropertyName = "Min";
|
moel@1
|
222 |
this.nodeTextBoxMin.IncrementalSearchEnabled = true;
|
moel@1
|
223 |
this.nodeTextBoxMin.LeftMargin = 3;
|
moel@1
|
224 |
this.nodeTextBoxMin.ParentColumn = this.min;
|
moel@1
|
225 |
//
|
moel@1
|
226 |
// nodeTextBoxMax
|
moel@1
|
227 |
//
|
moel@1
|
228 |
this.nodeTextBoxMax.DataPropertyName = "Max";
|
moel@1
|
229 |
this.nodeTextBoxMax.IncrementalSearchEnabled = true;
|
moel@1
|
230 |
this.nodeTextBoxMax.LeftMargin = 3;
|
moel@1
|
231 |
this.nodeTextBoxMax.ParentColumn = this.max;
|
moel@1
|
232 |
//
|
moel@1
|
233 |
// nodeTextBoxLimit
|
moel@1
|
234 |
//
|
moel@1
|
235 |
this.nodeTextBoxLimit.DataPropertyName = "Limit";
|
moel@1
|
236 |
this.nodeTextBoxLimit.EditEnabled = true;
|
moel@1
|
237 |
this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
|
moel@1
|
238 |
this.nodeTextBoxLimit.LeftMargin = 3;
|
moel@1
|
239 |
this.nodeTextBoxLimit.ParentColumn = this.limit;
|
moel@1
|
240 |
//
|
moel@1
|
241 |
// columnsContextMenuStrip
|
moel@1
|
242 |
//
|
moel@1
|
243 |
this.columnsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
244 |
this.valueToolStripMenuItem,
|
moel@1
|
245 |
this.minMenuItem,
|
moel@1
|
246 |
this.maxMenuItem,
|
moel@1
|
247 |
this.limitMenuItem});
|
moel@1
|
248 |
this.columnsContextMenuStrip.Name = "columnsContextMenuStrip";
|
moel@1
|
249 |
this.columnsContextMenuStrip.Size = new System.Drawing.Size(104, 92);
|
moel@1
|
250 |
//
|
moel@1
|
251 |
// valueToolStripMenuItem
|
moel@1
|
252 |
//
|
moel@1
|
253 |
this.valueToolStripMenuItem.Checked = true;
|
moel@1
|
254 |
this.valueToolStripMenuItem.CheckOnClick = true;
|
moel@1
|
255 |
this.valueToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
256 |
this.valueToolStripMenuItem.Name = "valueToolStripMenuItem";
|
moel@1
|
257 |
this.valueToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
|
moel@1
|
258 |
this.valueToolStripMenuItem.Text = "Value";
|
moel@1
|
259 |
this.valueToolStripMenuItem.CheckedChanged += new System.EventHandler(this.valueToolStripMenuItem_CheckedChanged);
|
moel@1
|
260 |
//
|
moel@1
|
261 |
// minMenuItem
|
moel@1
|
262 |
//
|
moel@1
|
263 |
this.minMenuItem.Checked = true;
|
moel@1
|
264 |
this.minMenuItem.CheckOnClick = true;
|
moel@1
|
265 |
this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
266 |
this.minMenuItem.Name = "minMenuItem";
|
moel@1
|
267 |
this.minMenuItem.Size = new System.Drawing.Size(103, 22);
|
moel@1
|
268 |
this.minMenuItem.Text = "Min";
|
moel@1
|
269 |
this.minMenuItem.CheckedChanged += new System.EventHandler(this.minToolStripMenuItem_CheckedChanged);
|
moel@1
|
270 |
//
|
moel@1
|
271 |
// maxMenuItem
|
moel@1
|
272 |
//
|
moel@1
|
273 |
this.maxMenuItem.Checked = true;
|
moel@1
|
274 |
this.maxMenuItem.CheckOnClick = true;
|
moel@1
|
275 |
this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
276 |
this.maxMenuItem.Name = "maxMenuItem";
|
moel@1
|
277 |
this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
|
moel@1
|
278 |
this.maxMenuItem.Text = "Max";
|
moel@1
|
279 |
this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxToolStripMenuItem_CheckedChanged);
|
moel@1
|
280 |
//
|
moel@1
|
281 |
// limitMenuItem
|
moel@1
|
282 |
//
|
moel@1
|
283 |
this.limitMenuItem.Checked = true;
|
moel@1
|
284 |
this.limitMenuItem.CheckOnClick = true;
|
moel@1
|
285 |
this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
286 |
this.limitMenuItem.Name = "limitMenuItem";
|
moel@1
|
287 |
this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
|
moel@1
|
288 |
this.limitMenuItem.Text = "Limit";
|
moel@1
|
289 |
this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitToolStripMenuItem_CheckedChanged);
|
moel@1
|
290 |
//
|
moel@1
|
291 |
// menuStrip
|
moel@1
|
292 |
//
|
moel@1
|
293 |
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
294 |
this.fileToolStripMenuItem,
|
moel@1
|
295 |
this.viewToolStripMenuItem,
|
moel@1
|
296 |
this.optionsToolStripMenuItem,
|
moel@1
|
297 |
this.helpToolStripMenuItem});
|
moel@1
|
298 |
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
moel@1
|
299 |
this.menuStrip.Name = "menuStrip";
|
moel@1
|
300 |
this.menuStrip.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
|
moel@1
|
301 |
this.menuStrip.Size = new System.Drawing.Size(478, 24);
|
moel@1
|
302 |
this.menuStrip.TabIndex = 1;
|
moel@1
|
303 |
this.menuStrip.Text = "menuStrip1";
|
moel@1
|
304 |
//
|
moel@1
|
305 |
// fileToolStripMenuItem
|
moel@1
|
306 |
//
|
moel@1
|
307 |
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
308 |
this.saveReportToolStripMenuItem,
|
moel@1
|
309 |
this.exitToolStripMenuItem});
|
moel@1
|
310 |
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
moel@1
|
311 |
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
moel@1
|
312 |
this.fileToolStripMenuItem.Text = "File";
|
moel@1
|
313 |
//
|
moel@1
|
314 |
// saveReportToolStripMenuItem
|
moel@1
|
315 |
//
|
moel@1
|
316 |
this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
|
moel@1
|
317 |
this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
|
moel@1
|
318 |
this.saveReportToolStripMenuItem.Text = "Save Report";
|
moel@1
|
319 |
this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
|
moel@1
|
320 |
//
|
moel@1
|
321 |
// exitToolStripMenuItem
|
moel@1
|
322 |
//
|
moel@1
|
323 |
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
moel@1
|
324 |
this.exitToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
|
moel@1
|
325 |
this.exitToolStripMenuItem.Text = "Exit";
|
moel@1
|
326 |
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
moel@1
|
327 |
//
|
moel@1
|
328 |
// viewToolStripMenuItem
|
moel@1
|
329 |
//
|
moel@1
|
330 |
this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
331 |
this.sensorsToolStripMenuItem,
|
moel@1
|
332 |
this.toolStripMenuItem1,
|
moel@1
|
333 |
this.plotMenuItem});
|
moel@1
|
334 |
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
moel@1
|
335 |
this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
moel@1
|
336 |
this.viewToolStripMenuItem.Text = "View";
|
moel@1
|
337 |
//
|
moel@1
|
338 |
// sensorsToolStripMenuItem
|
moel@1
|
339 |
//
|
moel@1
|
340 |
this.sensorsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
341 |
this.voltMenuItem,
|
moel@1
|
342 |
this.clocksMenuItem,
|
moel@1
|
343 |
this.tempMenuItem,
|
moel@24
|
344 |
this.loadMenuItem,
|
moel@57
|
345 |
this.fansMenuItem,
|
moel@57
|
346 |
this.flowsMenuItem});
|
moel@1
|
347 |
this.sensorsToolStripMenuItem.Name = "sensorsToolStripMenuItem";
|
moel@62
|
348 |
this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
|
moel@1
|
349 |
this.sensorsToolStripMenuItem.Text = "Sensors";
|
moel@1
|
350 |
//
|
moel@1
|
351 |
// voltMenuItem
|
moel@1
|
352 |
//
|
moel@1
|
353 |
this.voltMenuItem.Checked = true;
|
moel@1
|
354 |
this.voltMenuItem.CheckOnClick = true;
|
moel@1
|
355 |
this.voltMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
356 |
this.voltMenuItem.Name = "voltMenuItem";
|
moel@62
|
357 |
this.voltMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@1
|
358 |
this.voltMenuItem.Text = "Voltages";
|
moel@1
|
359 |
this.voltMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@1
|
360 |
//
|
moel@1
|
361 |
// clocksMenuItem
|
moel@1
|
362 |
//
|
moel@1
|
363 |
this.clocksMenuItem.Checked = true;
|
moel@1
|
364 |
this.clocksMenuItem.CheckOnClick = true;
|
moel@1
|
365 |
this.clocksMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
366 |
this.clocksMenuItem.Name = "clocksMenuItem";
|
moel@62
|
367 |
this.clocksMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@1
|
368 |
this.clocksMenuItem.Text = "Clocks";
|
moel@1
|
369 |
this.clocksMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@1
|
370 |
//
|
moel@27
|
371 |
// tempMenuItem
|
moel@27
|
372 |
//
|
moel@27
|
373 |
this.tempMenuItem.Checked = true;
|
moel@27
|
374 |
this.tempMenuItem.CheckOnClick = true;
|
moel@27
|
375 |
this.tempMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@27
|
376 |
this.tempMenuItem.Name = "tempMenuItem";
|
moel@62
|
377 |
this.tempMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@27
|
378 |
this.tempMenuItem.Text = "Temperatures";
|
moel@27
|
379 |
this.tempMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@27
|
380 |
//
|
moel@24
|
381 |
// loadMenuItem
|
moel@24
|
382 |
//
|
moel@24
|
383 |
this.loadMenuItem.Checked = true;
|
moel@24
|
384 |
this.loadMenuItem.CheckOnClick = true;
|
moel@24
|
385 |
this.loadMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@24
|
386 |
this.loadMenuItem.Name = "loadMenuItem";
|
moel@62
|
387 |
this.loadMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@24
|
388 |
this.loadMenuItem.Text = "Load";
|
moel@24
|
389 |
this.loadMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@24
|
390 |
//
|
moel@1
|
391 |
// fansMenuItem
|
moel@1
|
392 |
//
|
moel@1
|
393 |
this.fansMenuItem.Checked = true;
|
moel@1
|
394 |
this.fansMenuItem.CheckOnClick = true;
|
moel@1
|
395 |
this.fansMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
396 |
this.fansMenuItem.Name = "fansMenuItem";
|
moel@62
|
397 |
this.fansMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@1
|
398 |
this.fansMenuItem.Text = "Fans";
|
moel@1
|
399 |
this.fansMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@1
|
400 |
//
|
moel@62
|
401 |
// flowsMenuItem
|
moel@62
|
402 |
//
|
moel@62
|
403 |
this.flowsMenuItem.Checked = true;
|
moel@62
|
404 |
this.flowsMenuItem.CheckOnClick = true;
|
moel@62
|
405 |
this.flowsMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@62
|
406 |
this.flowsMenuItem.Name = "flowsMenuItem";
|
moel@62
|
407 |
this.flowsMenuItem.Size = new System.Drawing.Size(147, 22);
|
moel@62
|
408 |
this.flowsMenuItem.Text = "Flows";
|
moel@62
|
409 |
this.flowsMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
|
moel@62
|
410 |
//
|
moel@1
|
411 |
// toolStripMenuItem1
|
moel@1
|
412 |
//
|
moel@1
|
413 |
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
moel@62
|
414 |
this.toolStripMenuItem1.Size = new System.Drawing.Size(111, 6);
|
moel@1
|
415 |
//
|
moel@1
|
416 |
// plotMenuItem
|
moel@1
|
417 |
//
|
moel@1
|
418 |
this.plotMenuItem.Checked = true;
|
moel@1
|
419 |
this.plotMenuItem.CheckOnClick = true;
|
moel@1
|
420 |
this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
moel@1
|
421 |
this.plotMenuItem.Name = "plotMenuItem";
|
moel@62
|
422 |
this.plotMenuItem.Size = new System.Drawing.Size(114, 22);
|
moel@1
|
423 |
this.plotMenuItem.Text = "Plot";
|
moel@1
|
424 |
this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
|
moel@1
|
425 |
//
|
moel@1
|
426 |
// optionsToolStripMenuItem
|
moel@1
|
427 |
//
|
moel@1
|
428 |
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@55
|
429 |
this.startMinMenuItem,
|
moel@28
|
430 |
this.minTrayMenuItem,
|
moel@82
|
431 |
this.startupMenuItem,
|
moel@28
|
432 |
this.toolStripMenuItem3,
|
moel@1
|
433 |
this.hddMenuItem});
|
moel@1
|
434 |
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
|
moel@1
|
435 |
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
|
moel@1
|
436 |
this.optionsToolStripMenuItem.Text = "Options";
|
moel@1
|
437 |
//
|
moel@57
|
438 |
// startMinMenuItem
|
moel@55
|
439 |
//
|
moel@55
|
440 |
this.startMinMenuItem.CheckOnClick = true;
|
moel@57
|
441 |
this.startMinMenuItem.Name = "startMinMenuItem";
|
moel@82
|
442 |
this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
|
moel@55
|
443 |
this.startMinMenuItem.Text = "Start Minimized";
|
moel@55
|
444 |
//
|
moel@28
|
445 |
// minTrayMenuItem
|
moel@28
|
446 |
//
|
moel@28
|
447 |
this.minTrayMenuItem.CheckOnClick = true;
|
moel@28
|
448 |
this.minTrayMenuItem.Name = "minTrayMenuItem";
|
moel@82
|
449 |
this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
|
moel@28
|
450 |
this.minTrayMenuItem.Text = "Minimize To Tray";
|
moel@82
|
451 |
this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
|
moel@82
|
452 |
//
|
moel@82
|
453 |
// startupMenuItem
|
moel@82
|
454 |
//
|
moel@82
|
455 |
this.startupMenuItem.CheckOnClick = true;
|
moel@82
|
456 |
this.startupMenuItem.Name = "startupMenuItem";
|
moel@82
|
457 |
this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
|
moel@82
|
458 |
this.startupMenuItem.Text = "Run On Windows Startup";
|
moel@82
|
459 |
this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
|
moel@28
|
460 |
//
|
moel@28
|
461 |
// toolStripMenuItem3
|
moel@28
|
462 |
//
|
moel@28
|
463 |
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
|
moel@82
|
464 |
this.toolStripMenuItem3.Size = new System.Drawing.Size(204, 6);
|
moel@28
|
465 |
//
|
moel@1
|
466 |
// hddMenuItem
|
moel@1
|
467 |
//
|
moel@1
|
468 |
this.hddMenuItem.CheckOnClick = true;
|
moel@1
|
469 |
this.hddMenuItem.Name = "hddMenuItem";
|
moel@82
|
470 |
this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
|
moel@1
|
471 |
this.hddMenuItem.Text = "HDD sensors";
|
moel@1
|
472 |
this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
|
moel@1
|
473 |
//
|
moel@1
|
474 |
// helpToolStripMenuItem
|
moel@1
|
475 |
//
|
moel@1
|
476 |
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@1
|
477 |
this.aboutToolStripMenuItem});
|
moel@1
|
478 |
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
moel@1
|
479 |
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
moel@1
|
480 |
this.helpToolStripMenuItem.Text = "Help";
|
moel@1
|
481 |
//
|
moel@1
|
482 |
// aboutToolStripMenuItem
|
moel@1
|
483 |
//
|
moel@1
|
484 |
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
moel@1
|
485 |
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
|
moel@1
|
486 |
this.aboutToolStripMenuItem.Text = "About";
|
moel@1
|
487 |
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
moel@1
|
488 |
//
|
moel@1
|
489 |
// timer
|
moel@1
|
490 |
//
|
moel@1
|
491 |
this.timer.Interval = 1000;
|
moel@1
|
492 |
this.timer.Tick += new System.EventHandler(this.timer_Tick);
|
moel@1
|
493 |
//
|
moel@1
|
494 |
// splitContainer
|
moel@1
|
495 |
//
|
moel@1
|
496 |
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
moel@1
|
497 |
this.splitContainer.Location = new System.Drawing.Point(0, 24);
|
moel@1
|
498 |
this.splitContainer.Name = "splitContainer";
|
moel@1
|
499 |
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
moel@1
|
500 |
//
|
moel@1
|
501 |
// splitContainer.Panel1
|
moel@1
|
502 |
//
|
moel@1
|
503 |
this.splitContainer.Panel1.Controls.Add(this.treeView);
|
moel@1
|
504 |
//
|
moel@1
|
505 |
// splitContainer.Panel2
|
moel@1
|
506 |
//
|
moel@1
|
507 |
this.splitContainer.Panel2.Controls.Add(this.plotPanel);
|
moel@1
|
508 |
this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
|
moel@1
|
509 |
this.splitContainer.Size = new System.Drawing.Size(478, 768);
|
moel@1
|
510 |
this.splitContainer.SplitterDistance = 567;
|
moel@1
|
511 |
this.splitContainer.SplitterWidth = 3;
|
moel@1
|
512 |
this.splitContainer.TabIndex = 3;
|
moel@1
|
513 |
//
|
moel@63
|
514 |
// plotPanel
|
moel@63
|
515 |
//
|
moel@63
|
516 |
this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
moel@63
|
517 |
this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
moel@63
|
518 |
this.plotPanel.Font = new System.Drawing.Font("Segoe UI", 9F);
|
moel@63
|
519 |
this.plotPanel.Location = new System.Drawing.Point(0, 0);
|
moel@63
|
520 |
this.plotPanel.Name = "plotPanel";
|
moel@63
|
521 |
this.plotPanel.Size = new System.Drawing.Size(478, 198);
|
moel@63
|
522 |
this.plotPanel.TabIndex = 0;
|
moel@63
|
523 |
//
|
moel@27
|
524 |
// notifyContextMenuStrip
|
moel@27
|
525 |
//
|
moel@27
|
526 |
this.notifyContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
moel@82
|
527 |
this.hideShowToolStripMenuItem,
|
moel@27
|
528 |
this.toolStripMenuItem2,
|
moel@27
|
529 |
this.exitToolStripMenuItem1});
|
moel@27
|
530 |
this.notifyContextMenuStrip.Name = "notifyContextMenuStrip";
|
moel@82
|
531 |
this.notifyContextMenuStrip.Size = new System.Drawing.Size(153, 76);
|
moel@27
|
532 |
//
|
moel@82
|
533 |
// hideShowToolStripMenuItem
|
moel@27
|
534 |
//
|
moel@82
|
535 |
this.hideShowToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
moel@82
|
536 |
this.hideShowToolStripMenuItem.Name = "hideShowToolStripMenuItem";
|
moel@82
|
537 |
this.hideShowToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
moel@82
|
538 |
this.hideShowToolStripMenuItem.Text = "Hide/Show";
|
moel@82
|
539 |
this.hideShowToolStripMenuItem.Click += new System.EventHandler(this.hideShowClick);
|
moel@27
|
540 |
//
|
moel@27
|
541 |
// toolStripMenuItem2
|
moel@27
|
542 |
//
|
moel@27
|
543 |
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
|
moel@82
|
544 |
this.toolStripMenuItem2.Size = new System.Drawing.Size(149, 6);
|
moel@27
|
545 |
//
|
moel@27
|
546 |
// exitToolStripMenuItem1
|
moel@27
|
547 |
//
|
moel@27
|
548 |
this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
|
moel@82
|
549 |
this.exitToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
|
moel@27
|
550 |
this.exitToolStripMenuItem1.Text = "Exit";
|
moel@27
|
551 |
this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
moel@27
|
552 |
//
|
moel@40
|
553 |
// sensorContextMenuStrip
|
moel@40
|
554 |
//
|
moel@40
|
555 |
this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
|
moel@40
|
556 |
this.sensorContextMenuStrip.Size = new System.Drawing.Size(61, 4);
|
moel@40
|
557 |
//
|
moel@1
|
558 |
// MainForm
|
moel@1
|
559 |
//
|
moel@1
|
560 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
moel@1
|
561 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
moel@1
|
562 |
this.ClientSize = new System.Drawing.Size(478, 792);
|
moel@1
|
563 |
this.Controls.Add(this.splitContainer);
|
moel@1
|
564 |
this.Controls.Add(this.menuStrip);
|
moel@1
|
565 |
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
moel@1
|
566 |
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
moel@1
|
567 |
this.MainMenuStrip = this.menuStrip;
|
moel@1
|
568 |
this.Name = "MainForm";
|
moel@1
|
569 |
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
moel@1
|
570 |
this.Text = "Open Hardware Monitor";
|
moel@1
|
571 |
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
|
moel@1
|
572 |
this.columnsContextMenuStrip.ResumeLayout(false);
|
moel@1
|
573 |
this.menuStrip.ResumeLayout(false);
|
moel@1
|
574 |
this.menuStrip.PerformLayout();
|
moel@1
|
575 |
this.splitContainer.Panel1.ResumeLayout(false);
|
moel@1
|
576 |
this.splitContainer.Panel2.ResumeLayout(false);
|
moel@1
|
577 |
this.splitContainer.ResumeLayout(false);
|
moel@27
|
578 |
this.notifyContextMenuStrip.ResumeLayout(false);
|
moel@1
|
579 |
this.ResumeLayout(false);
|
moel@1
|
580 |
this.PerformLayout();
|
moel@1
|
581 |
|
moel@1
|
582 |
}
|
moel@1
|
583 |
|
moel@1
|
584 |
#endregion
|
moel@1
|
585 |
|
moel@1
|
586 |
private Aga.Controls.Tree.TreeViewAdv treeView;
|
moel@1
|
587 |
private System.Windows.Forms.MenuStrip menuStrip;
|
moel@1
|
588 |
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
moel@1
|
589 |
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
moel@1
|
590 |
private Aga.Controls.Tree.TreeColumn sensor;
|
moel@1
|
591 |
private Aga.Controls.Tree.TreeColumn value;
|
moel@1
|
592 |
private Aga.Controls.Tree.TreeColumn min;
|
moel@1
|
593 |
private Aga.Controls.Tree.TreeColumn max;
|
moel@1
|
594 |
private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
|
moel@1
|
595 |
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
|
moel@1
|
596 |
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
|
moel@1
|
597 |
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
|
moel@1
|
598 |
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
|
moel@1
|
599 |
private System.Windows.Forms.Timer timer;
|
moel@1
|
600 |
private System.Windows.Forms.SplitContainer splitContainer;
|
moel@1
|
601 |
private PlotPanel plotPanel;
|
moel@1
|
602 |
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
moel@1
|
603 |
private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
|
moel@1
|
604 |
private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
|
moel@1
|
605 |
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
moel@1
|
606 |
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
moel@1
|
607 |
private Aga.Controls.Tree.TreeColumn limit;
|
moel@1
|
608 |
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
|
moel@1
|
609 |
private System.Windows.Forms.ContextMenuStrip columnsContextMenuStrip;
|
moel@1
|
610 |
private System.Windows.Forms.ToolStripMenuItem minMenuItem;
|
moel@1
|
611 |
private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
|
moel@1
|
612 |
private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
|
moel@1
|
613 |
private System.Windows.Forms.ToolStripMenuItem valueToolStripMenuItem;
|
moel@1
|
614 |
private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
|
moel@1
|
615 |
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
moel@1
|
616 |
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
|
moel@1
|
617 |
private System.Windows.Forms.ToolStripMenuItem sensorsToolStripMenuItem;
|
moel@1
|
618 |
private System.Windows.Forms.ToolStripMenuItem clocksMenuItem;
|
moel@1
|
619 |
private System.Windows.Forms.ToolStripMenuItem tempMenuItem;
|
moel@1
|
620 |
private System.Windows.Forms.ToolStripMenuItem fansMenuItem;
|
moel@1
|
621 |
private System.Windows.Forms.ToolStripMenuItem voltMenuItem;
|
moel@1
|
622 |
private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
|
moel@24
|
623 |
private System.Windows.Forms.ToolStripMenuItem loadMenuItem;
|
moel@27
|
624 |
private System.Windows.Forms.ContextMenuStrip notifyContextMenuStrip;
|
moel@82
|
625 |
private System.Windows.Forms.ToolStripMenuItem hideShowToolStripMenuItem;
|
moel@27
|
626 |
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
|
moel@27
|
627 |
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem1;
|
moel@28
|
628 |
private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
|
moel@28
|
629 |
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
|
moel@40
|
630 |
private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
|
moel@55
|
631 |
private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
|
moel@57
|
632 |
private System.Windows.Forms.ToolStripMenuItem flowsMenuItem;
|
moel@82
|
633 |
private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
|
moel@1
|
634 |
}
|
moel@1
|
635 |
}
|
moel@1
|
636 |
|