Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MainForm.Designer.cs « GUI - github.com/openhardwaremonitor/openhardwaremonitor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6020301b0c9afe7c76d87c935cad252654a2044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
/*
 
  This Source Code Form is subject to the terms of the Mozilla Public
  License, v. 2.0. If a copy of the MPL was not distributed with this
  file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
  Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
	
*/

namespace OpenHardwareMonitor.GUI {
  partial class MainForm {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing) {
      if (disposing && (components != null)) {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      this.components = new System.ComponentModel.Container();
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
      this.sensor = new Aga.Controls.Tree.TreeColumn();
      this.value = new Aga.Controls.Tree.TreeColumn();
      this.min = new Aga.Controls.Tree.TreeColumn();
      this.max = new Aga.Controls.Tree.TreeColumn();
      this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
      this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
      this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
      this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
      this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
      this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
      this.mainMenu = new System.Windows.Forms.MainMenu(this.components);
      this.fileMenuItem = new System.Windows.Forms.MenuItem();
      this.saveReportMenuItem = new System.Windows.Forms.MenuItem();
      this.sumbitReportMenuItem = new System.Windows.Forms.MenuItem();
      this.MenuItem2 = new System.Windows.Forms.MenuItem();
      this.resetMenuItem = new System.Windows.Forms.MenuItem();
      this.menuItem5 = new System.Windows.Forms.MenuItem();
      this.mainboardMenuItem = new System.Windows.Forms.MenuItem();
      this.cpuMenuItem = new System.Windows.Forms.MenuItem();
      this.ramMenuItem = new System.Windows.Forms.MenuItem();
      this.gpuMenuItem = new System.Windows.Forms.MenuItem();
      this.fanControllerMenuItem = new System.Windows.Forms.MenuItem();
      this.hddMenuItem = new System.Windows.Forms.MenuItem();
      this.menuItem6 = new System.Windows.Forms.MenuItem();
      this.exitMenuItem = new System.Windows.Forms.MenuItem();
      this.viewMenuItem = new System.Windows.Forms.MenuItem();
      this.resetMinMaxMenuItem = new System.Windows.Forms.MenuItem();
      this.MenuItem3 = new System.Windows.Forms.MenuItem();
      this.hiddenMenuItem = new System.Windows.Forms.MenuItem();
      this.plotMenuItem = new System.Windows.Forms.MenuItem();
      this.gadgetMenuItem = new System.Windows.Forms.MenuItem();
      this.MenuItem1 = new System.Windows.Forms.MenuItem();
      this.columnsMenuItem = new System.Windows.Forms.MenuItem();
      this.valueMenuItem = new System.Windows.Forms.MenuItem();
      this.minMenuItem = new System.Windows.Forms.MenuItem();
      this.maxMenuItem = new System.Windows.Forms.MenuItem();
      this.optionsMenuItem = new System.Windows.Forms.MenuItem();
      this.startMinMenuItem = new System.Windows.Forms.MenuItem();
      this.minTrayMenuItem = new System.Windows.Forms.MenuItem();
      this.minCloseMenuItem = new System.Windows.Forms.MenuItem();
      this.startupMenuItem = new System.Windows.Forms.MenuItem();
      this.separatorMenuItem = new System.Windows.Forms.MenuItem();
      this.temperatureUnitsMenuItem = new System.Windows.Forms.MenuItem();
      this.celsiusMenuItem = new System.Windows.Forms.MenuItem();
      this.fahrenheitMenuItem = new System.Windows.Forms.MenuItem();
      this.plotLocationMenuItem = new System.Windows.Forms.MenuItem();
      this.plotWindowMenuItem = new System.Windows.Forms.MenuItem();
      this.plotBottomMenuItem = new System.Windows.Forms.MenuItem();
      this.plotRightMenuItem = new System.Windows.Forms.MenuItem();
      this.webMenuItemSeparator = new System.Windows.Forms.MenuItem();
      this.webMenuItem = new System.Windows.Forms.MenuItem();
      this.runWebServerMenuItem = new System.Windows.Forms.MenuItem();
      this.serverPortMenuItem = new System.Windows.Forms.MenuItem();
      this.logSensorsMenuItem = new System.Windows.Forms.MenuItem();
      this.helpMenuItem = new System.Windows.Forms.MenuItem();
      this.aboutMenuItem = new System.Windows.Forms.MenuItem();
      this.treeContextMenu = new System.Windows.Forms.ContextMenu();
      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
      this.timer = new System.Windows.Forms.Timer(this.components);
      this.splitContainer = new OpenHardwareMonitor.GUI.SplitContainerAdv();
      this.treeView = new Aga.Controls.Tree.TreeViewAdv();
      this.logSeparatorMenuItem = new System.Windows.Forms.MenuItem();
      this.loggingIntervalMenuItem = new System.Windows.Forms.MenuItem();
      this.log1sMenuItem = new System.Windows.Forms.MenuItem();
      this.log5sMenuItem = new System.Windows.Forms.MenuItem();
      this.log10sMenuItem = new System.Windows.Forms.MenuItem();
      this.log30sMenuItem = new System.Windows.Forms.MenuItem();
      this.log1minMenuItem = new System.Windows.Forms.MenuItem();
      this.log5minMenuItem = new System.Windows.Forms.MenuItem();
      this.log10minMenuItem = new System.Windows.Forms.MenuItem();
      this.log30minMenuItem = new System.Windows.Forms.MenuItem();
      this.log2sMenuItem = new System.Windows.Forms.MenuItem();
      this.log2minMenuItem = new System.Windows.Forms.MenuItem();
      this.log1hMenuItem = new System.Windows.Forms.MenuItem();
      this.log2hMenuItem = new System.Windows.Forms.MenuItem();
      this.log6hMenuItem = new System.Windows.Forms.MenuItem();
      this.splitContainer.Panel1.SuspendLayout();
      this.splitContainer.SuspendLayout();
      this.SuspendLayout();
      // 
      // sensor
      // 
      this.sensor.Header = "Sensor";
      this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
      this.sensor.TooltipText = null;
      this.sensor.Width = 250;
      // 
      // value
      // 
      this.value.Header = "Value";
      this.value.SortOrder = System.Windows.Forms.SortOrder.None;
      this.value.TooltipText = null;
      this.value.Width = 100;
      // 
      // min
      // 
      this.min.Header = "Min";
      this.min.SortOrder = System.Windows.Forms.SortOrder.None;
      this.min.TooltipText = null;
      this.min.Width = 100;
      // 
      // max
      // 
      this.max.Header = "Max";
      this.max.SortOrder = System.Windows.Forms.SortOrder.None;
      this.max.TooltipText = null;
      this.max.Width = 100;
      // 
      // nodeImage
      // 
      this.nodeImage.DataPropertyName = "Image";
      this.nodeImage.LeftMargin = 1;
      this.nodeImage.ParentColumn = this.sensor;
      this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
      // 
      // nodeCheckBox
      // 
      this.nodeCheckBox.DataPropertyName = "Plot";
      this.nodeCheckBox.EditEnabled = true;
      this.nodeCheckBox.LeftMargin = 3;
      this.nodeCheckBox.ParentColumn = this.sensor;
      // 
      // nodeTextBoxText
      // 
      this.nodeTextBoxText.DataPropertyName = "Text";
      this.nodeTextBoxText.EditEnabled = true;
      this.nodeTextBoxText.IncrementalSearchEnabled = true;
      this.nodeTextBoxText.LeftMargin = 3;
      this.nodeTextBoxText.ParentColumn = this.sensor;
      this.nodeTextBoxText.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
      this.nodeTextBoxText.UseCompatibleTextRendering = true;
      // 
      // nodeTextBoxValue
      // 
      this.nodeTextBoxValue.DataPropertyName = "Value";
      this.nodeTextBoxValue.IncrementalSearchEnabled = true;
      this.nodeTextBoxValue.LeftMargin = 3;
      this.nodeTextBoxValue.ParentColumn = this.value;
      this.nodeTextBoxValue.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
      this.nodeTextBoxValue.UseCompatibleTextRendering = true;
      // 
      // nodeTextBoxMin
      // 
      this.nodeTextBoxMin.DataPropertyName = "Min";
      this.nodeTextBoxMin.IncrementalSearchEnabled = true;
      this.nodeTextBoxMin.LeftMargin = 3;
      this.nodeTextBoxMin.ParentColumn = this.min;
      this.nodeTextBoxMin.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
      this.nodeTextBoxMin.UseCompatibleTextRendering = true;
      // 
      // nodeTextBoxMax
      // 
      this.nodeTextBoxMax.DataPropertyName = "Max";
      this.nodeTextBoxMax.IncrementalSearchEnabled = true;
      this.nodeTextBoxMax.LeftMargin = 3;
      this.nodeTextBoxMax.ParentColumn = this.max;
      this.nodeTextBoxMax.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
      this.nodeTextBoxMax.UseCompatibleTextRendering = true;
      // 
      // mainMenu
      // 
      this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.fileMenuItem,
            this.viewMenuItem,
            this.optionsMenuItem,
            this.helpMenuItem});
      // 
      // fileMenuItem
      // 
      this.fileMenuItem.Index = 0;
      this.fileMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.saveReportMenuItem,
            this.sumbitReportMenuItem,
            this.MenuItem2,
            this.resetMenuItem,
            this.menuItem5,
            this.menuItem6,
            this.exitMenuItem});
      this.fileMenuItem.Text = "File";
      // 
      // saveReportMenuItem
      // 
      this.saveReportMenuItem.Index = 0;
      this.saveReportMenuItem.Text = "Save Report...";
      this.saveReportMenuItem.Click += new System.EventHandler(this.saveReportMenuItem_Click);
      // 
      // sumbitReportMenuItem
      // 
      this.sumbitReportMenuItem.Index = 1;
      this.sumbitReportMenuItem.Text = "Submit Report...";
      this.sumbitReportMenuItem.Click += new System.EventHandler(this.sumbitReportMenuItem_Click);
      // 
      // MenuItem2
      // 
      this.MenuItem2.Index = 2;
      this.MenuItem2.Text = "-";
      // 
      // resetMenuItem
      // 
      this.resetMenuItem.Index = 3;
      this.resetMenuItem.Text = "Reset";
      this.resetMenuItem.Click += new System.EventHandler(this.resetClick);
      // 
      // menuItem5
      // 
      this.menuItem5.Index = 4;
      this.menuItem5.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mainboardMenuItem,
            this.cpuMenuItem,
            this.ramMenuItem,
            this.gpuMenuItem,
            this.fanControllerMenuItem,
            this.hddMenuItem});
      this.menuItem5.Text = "Hardware";
      // 
      // mainboardMenuItem
      // 
      this.mainboardMenuItem.Index = 0;
      this.mainboardMenuItem.Text = "Mainboard";
      // 
      // cpuMenuItem
      // 
      this.cpuMenuItem.Index = 1;
      this.cpuMenuItem.Text = "CPU";
      // 
      // ramMenuItem
      // 
      this.ramMenuItem.Index = 2;
      this.ramMenuItem.Text = "RAM";
      // 
      // gpuMenuItem
      // 
      this.gpuMenuItem.Index = 3;
      this.gpuMenuItem.Text = "GPU";
      // 
      // fanControllerMenuItem
      // 
      this.fanControllerMenuItem.Index = 4;
      this.fanControllerMenuItem.Text = "Fan Controllers";
      // 
      // hddMenuItem
      // 
      this.hddMenuItem.Index = 5;
      this.hddMenuItem.Text = "Hard Disk Drives";
      // 
      // menuItem6
      // 
      this.menuItem6.Index = 5;
      this.menuItem6.Text = "-";
      // 
      // exitMenuItem
      // 
      this.exitMenuItem.Index = 6;
      this.exitMenuItem.Text = "Exit";
      this.exitMenuItem.Click += new System.EventHandler(this.exitClick);
      // 
      // viewMenuItem
      // 
      this.viewMenuItem.Index = 1;
      this.viewMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.resetMinMaxMenuItem,
            this.MenuItem3,
            this.hiddenMenuItem,
            this.plotMenuItem,
            this.gadgetMenuItem,
            this.MenuItem1,
            this.columnsMenuItem});
      this.viewMenuItem.Text = "View";
      // 
      // resetMinMaxMenuItem
      // 
      this.resetMinMaxMenuItem.Index = 0;
      this.resetMinMaxMenuItem.Text = "Reset Min/Max";
      this.resetMinMaxMenuItem.Click += new System.EventHandler(this.resetMinMaxMenuItem_Click);
      // 
      // MenuItem3
      // 
      this.MenuItem3.Index = 1;
      this.MenuItem3.Text = "-";
      // 
      // hiddenMenuItem
      // 
      this.hiddenMenuItem.Index = 2;
      this.hiddenMenuItem.Text = "Show Hidden Sensors";
      // 
      // plotMenuItem
      // 
      this.plotMenuItem.Index = 3;
      this.plotMenuItem.Text = "Show Plot";
      // 
      // gadgetMenuItem
      // 
      this.gadgetMenuItem.Index = 4;
      this.gadgetMenuItem.Text = "Show Gadget";
      // 
      // MenuItem1
      // 
      this.MenuItem1.Index = 5;
      this.MenuItem1.Text = "-";
      // 
      // columnsMenuItem
      // 
      this.columnsMenuItem.Index = 6;
      this.columnsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.valueMenuItem,
            this.minMenuItem,
            this.maxMenuItem});
      this.columnsMenuItem.Text = "Columns";
      // 
      // valueMenuItem
      // 
      this.valueMenuItem.Index = 0;
      this.valueMenuItem.Text = "Value";
      // 
      // minMenuItem
      // 
      this.minMenuItem.Index = 1;
      this.minMenuItem.Text = "Min";
      // 
      // maxMenuItem
      // 
      this.maxMenuItem.Index = 2;
      this.maxMenuItem.Text = "Max";
      // 
      // optionsMenuItem
      // 
      this.optionsMenuItem.Index = 2;
      this.optionsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.startMinMenuItem,
            this.minTrayMenuItem,
            this.minCloseMenuItem,
            this.startupMenuItem,
            this.separatorMenuItem,
            this.temperatureUnitsMenuItem,
            this.plotLocationMenuItem,
            this.logSeparatorMenuItem,
            this.logSensorsMenuItem,
            this.loggingIntervalMenuItem,
            this.webMenuItemSeparator,
            this.webMenuItem});
      this.optionsMenuItem.Text = "Options";
      // 
      // startMinMenuItem
      // 
      this.startMinMenuItem.Index = 0;
      this.startMinMenuItem.Text = "Start Minimized";
      // 
      // minTrayMenuItem
      // 
      this.minTrayMenuItem.Index = 1;
      this.minTrayMenuItem.Text = "Minimize To Tray";
      // 
      // minCloseMenuItem
      // 
      this.minCloseMenuItem.Index = 2;
      this.minCloseMenuItem.Text = "Minimize On Close";
      // 
      // startupMenuItem
      // 
      this.startupMenuItem.Index = 3;
      this.startupMenuItem.Text = "Run On Windows Startup";
      // 
      // separatorMenuItem
      // 
      this.separatorMenuItem.Index = 4;
      this.separatorMenuItem.Text = "-";
      // 
      // temperatureUnitsMenuItem
      // 
      this.temperatureUnitsMenuItem.Index = 5;
      this.temperatureUnitsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.celsiusMenuItem,
            this.fahrenheitMenuItem});
      this.temperatureUnitsMenuItem.Text = "Temperature Unit";
      // 
      // celsiusMenuItem
      // 
      this.celsiusMenuItem.Index = 0;
      this.celsiusMenuItem.RadioCheck = true;
      this.celsiusMenuItem.Text = "Celsius";
      this.celsiusMenuItem.Click += new System.EventHandler(this.celsiusMenuItem_Click);
      // 
      // fahrenheitMenuItem
      // 
      this.fahrenheitMenuItem.Index = 1;
      this.fahrenheitMenuItem.RadioCheck = true;
      this.fahrenheitMenuItem.Text = "Fahrenheit";
      this.fahrenheitMenuItem.Click += new System.EventHandler(this.fahrenheitMenuItem_Click);
      // 
      // plotLocationMenuItem
      // 
      this.plotLocationMenuItem.Index = 6;
      this.plotLocationMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.plotWindowMenuItem,
            this.plotBottomMenuItem,
            this.plotRightMenuItem});
      this.plotLocationMenuItem.Text = "Plot Location";
      // 
      // plotWindowMenuItem
      // 
      this.plotWindowMenuItem.Index = 0;
      this.plotWindowMenuItem.RadioCheck = true;
      this.plotWindowMenuItem.Text = "Window";
      // 
      // plotBottomMenuItem
      // 
      this.plotBottomMenuItem.Index = 1;
      this.plotBottomMenuItem.RadioCheck = true;
      this.plotBottomMenuItem.Text = "Bottom";
      // 
      // plotRightMenuItem
      // 
      this.plotRightMenuItem.Index = 2;
      this.plotRightMenuItem.RadioCheck = true;
      this.plotRightMenuItem.Text = "Right";
      // 
      // webMenuItemSeparator
      // 
      this.webMenuItemSeparator.Index = 10;
      this.webMenuItemSeparator.Text = "-";
      // 
      // webMenuItem
      // 
      this.webMenuItem.Index = 11;
      this.webMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.runWebServerMenuItem,
            this.serverPortMenuItem});
      this.webMenuItem.Text = "Remote Web Server";
      // 
      // runWebServerMenuItem
      // 
      this.runWebServerMenuItem.Index = 0;
      this.runWebServerMenuItem.Text = "Run";
      // 
      // serverPortMenuItem
      // 
      this.serverPortMenuItem.Index = 1;
      this.serverPortMenuItem.Text = "Port";
      this.serverPortMenuItem.Click += new System.EventHandler(this.serverPortMenuItem_Click);
      // 
      // logSensorsMenuItem
      // 
      this.logSensorsMenuItem.Index = 8;
      this.logSensorsMenuItem.Text = "Log Sensors";
      // 
      // helpMenuItem
      // 
      this.helpMenuItem.Index = 3;
      this.helpMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.aboutMenuItem});
      this.helpMenuItem.Text = "Help";
      // 
      // aboutMenuItem
      // 
      this.aboutMenuItem.Index = 0;
      this.aboutMenuItem.Text = "About";
      this.aboutMenuItem.Click += new System.EventHandler(this.aboutMenuItem_Click);
      // 
      // saveFileDialog
      // 
      this.saveFileDialog.DefaultExt = "txt";
      this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
      this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
      this.saveFileDialog.RestoreDirectory = true;
      this.saveFileDialog.Title = "Save Report As";
      // 
      // timer
      // 
      this.timer.Interval = 1000;
      this.timer.Tick += new System.EventHandler(this.timer_Tick);
      // 
      // splitContainer
      // 
      this.splitContainer.Border3DStyle = System.Windows.Forms.Border3DStyle.Raised;
      this.splitContainer.Color = System.Drawing.SystemColors.Control;
      this.splitContainer.Cursor = System.Windows.Forms.Cursors.Default;
      this.splitContainer.Location = new System.Drawing.Point(12, 12);
      this.splitContainer.Name = "splitContainer";
      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
      // 
      // splitContainer.Panel1
      // 
      this.splitContainer.Panel1.Controls.Add(this.treeView);
      // 
      // splitContainer.Panel2
      // 
      this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
      this.splitContainer.Size = new System.Drawing.Size(386, 483);
      this.splitContainer.SplitterDistance = 354;
      this.splitContainer.SplitterWidth = 5;
      this.splitContainer.TabIndex = 3;
      // 
      // treeView
      // 
      this.treeView.BackColor = System.Drawing.SystemColors.Window;
      this.treeView.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.treeView.Columns.Add(this.sensor);
      this.treeView.Columns.Add(this.value);
      this.treeView.Columns.Add(this.min);
      this.treeView.Columns.Add(this.max);
      this.treeView.DefaultToolTipProvider = null;
      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
      this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
      this.treeView.FullRowSelect = true;
      this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
      this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
      this.treeView.Location = new System.Drawing.Point(0, 0);
      this.treeView.Model = null;
      this.treeView.Name = "treeView";
      this.treeView.NodeControls.Add(this.nodeImage);
      this.treeView.NodeControls.Add(this.nodeCheckBox);
      this.treeView.NodeControls.Add(this.nodeTextBoxText);
      this.treeView.NodeControls.Add(this.nodeTextBoxValue);
      this.treeView.NodeControls.Add(this.nodeTextBoxMin);
      this.treeView.NodeControls.Add(this.nodeTextBoxMax);
      this.treeView.SelectedNode = null;
      this.treeView.Size = new System.Drawing.Size(386, 354);
      this.treeView.TabIndex = 0;
      this.treeView.Text = "treeView";
      this.treeView.UseColumns = true;
      this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
      this.treeView.Click += new System.EventHandler(this.treeView_Click);
      this.treeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseDown);
      this.treeView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseMove);
      this.treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseUp);
      // 
      // logSeparatorMenuItem
      // 
      this.logSeparatorMenuItem.Index = 7;
      this.logSeparatorMenuItem.Text = "-";
      // 
      // loggingIntervalMenuItem
      // 
      this.loggingIntervalMenuItem.Index = 9;
      this.loggingIntervalMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.log1sMenuItem,
            this.log2sMenuItem,
            this.log5sMenuItem,
            this.log10sMenuItem,
            this.log30sMenuItem,
            this.log1minMenuItem,
            this.log2minMenuItem,
            this.log5minMenuItem,
            this.log10minMenuItem,
            this.log30minMenuItem,
            this.log1hMenuItem,
            this.log2hMenuItem,
            this.log6hMenuItem});
      this.loggingIntervalMenuItem.Text = "Logging Interval";
      // 
      // log1sMenuItem
      // 
      this.log1sMenuItem.Index = 0;
      this.log1sMenuItem.RadioCheck = true;
      this.log1sMenuItem.Text = "1s";
      // 
      // log5sMenuItem
      // 
      this.log5sMenuItem.Index = 2;
      this.log5sMenuItem.RadioCheck = true;
      this.log5sMenuItem.Text = "5s";
      // 
      // log10sMenuItem
      // 
      this.log10sMenuItem.Index = 3;
      this.log10sMenuItem.RadioCheck = true;
      this.log10sMenuItem.Text = "10s";
      // 
      // log30sMenuItem
      // 
      this.log30sMenuItem.Index = 4;
      this.log30sMenuItem.RadioCheck = true;
      this.log30sMenuItem.Text = "30s";
      // 
      // log1minMenuItem
      // 
      this.log1minMenuItem.Index = 5;
      this.log1minMenuItem.RadioCheck = true;
      this.log1minMenuItem.Text = "1min";
      // 
      // log5minMenuItem
      // 
      this.log5minMenuItem.Index = 7;
      this.log5minMenuItem.RadioCheck = true;
      this.log5minMenuItem.Text = "5min";
      // 
      // log10minMenuItem
      // 
      this.log10minMenuItem.Index = 8;
      this.log10minMenuItem.RadioCheck = true;
      this.log10minMenuItem.Text = "10min";
      // 
      // log30minMenuItem
      // 
      this.log30minMenuItem.Index = 9;
      this.log30minMenuItem.RadioCheck = true;
      this.log30minMenuItem.Text = "30min";
      // 
      // log2sMenuItem
      // 
      this.log2sMenuItem.Index = 1;
      this.log2sMenuItem.RadioCheck = true;
      this.log2sMenuItem.Text = "2s";
      // 
      // log2minMenuItem
      // 
      this.log2minMenuItem.Index = 6;
      this.log2minMenuItem.RadioCheck = true;
      this.log2minMenuItem.Text = "2min";
      // 
      // log1hMenuItem
      // 
      this.log1hMenuItem.Index = 10;
      this.log1hMenuItem.RadioCheck = true;
      this.log1hMenuItem.Text = "1h";
      // 
      // log2hMenuItem
      // 
      this.log2hMenuItem.Index = 11;
      this.log2hMenuItem.RadioCheck = true;
      this.log2hMenuItem.Text = "2h";
      // 
      // log6hMenuItem
      // 
      this.log6hMenuItem.Index = 12;
      this.log6hMenuItem.RadioCheck = true;
      this.log6hMenuItem.Text = "6h";
      // 
      // MainForm
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(418, 554);
      this.Controls.Add(this.splitContainer);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.Menu = this.mainMenu;
      this.Name = "MainForm";
      this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
      this.Text = "Open Hardware Monitor";
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
      this.Load += new System.EventHandler(this.MainForm_Load);
      this.ResizeEnd += new System.EventHandler(this.MainForm_MoveOrResize);
      this.Move += new System.EventHandler(this.MainForm_MoveOrResize);
      this.splitContainer.Panel1.ResumeLayout(false);
      this.splitContainer.ResumeLayout(false);
      this.ResumeLayout(false);

    }

    #endregion

    private Aga.Controls.Tree.TreeViewAdv treeView;
    private System.Windows.Forms.MainMenu mainMenu;
    private System.Windows.Forms.MenuItem fileMenuItem;
    private System.Windows.Forms.MenuItem exitMenuItem;
    private Aga.Controls.Tree.TreeColumn sensor;
    private Aga.Controls.Tree.TreeColumn value;
    private Aga.Controls.Tree.TreeColumn min;
    private Aga.Controls.Tree.TreeColumn max;
    private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
    private SplitContainerAdv splitContainer;
    private System.Windows.Forms.MenuItem viewMenuItem;
    private System.Windows.Forms.MenuItem plotMenuItem;
    private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
    private System.Windows.Forms.MenuItem helpMenuItem;
    private System.Windows.Forms.MenuItem aboutMenuItem;
    private System.Windows.Forms.MenuItem saveReportMenuItem;
    private System.Windows.Forms.MenuItem optionsMenuItem;
    private System.Windows.Forms.MenuItem hddMenuItem;
    private System.Windows.Forms.MenuItem minTrayMenuItem;
    private System.Windows.Forms.MenuItem separatorMenuItem;
    private System.Windows.Forms.ContextMenu treeContextMenu;
    private System.Windows.Forms.MenuItem startMinMenuItem;
    private System.Windows.Forms.MenuItem startupMenuItem;
    private System.Windows.Forms.SaveFileDialog saveFileDialog;
    private System.Windows.Forms.Timer timer;
    private System.Windows.Forms.MenuItem hiddenMenuItem;
    private System.Windows.Forms.MenuItem MenuItem1;
    private System.Windows.Forms.MenuItem columnsMenuItem;
    private System.Windows.Forms.MenuItem valueMenuItem;
    private System.Windows.Forms.MenuItem minMenuItem;
    private System.Windows.Forms.MenuItem maxMenuItem;
    private System.Windows.Forms.MenuItem temperatureUnitsMenuItem;
    private System.Windows.Forms.MenuItem webMenuItemSeparator;
    private System.Windows.Forms.MenuItem celsiusMenuItem;
    private System.Windows.Forms.MenuItem fahrenheitMenuItem;
    private System.Windows.Forms.MenuItem sumbitReportMenuItem;
    private System.Windows.Forms.MenuItem MenuItem2;
    private System.Windows.Forms.MenuItem resetMinMaxMenuItem;
    private System.Windows.Forms.MenuItem MenuItem3;
    private System.Windows.Forms.MenuItem gadgetMenuItem;
    private System.Windows.Forms.MenuItem minCloseMenuItem;
    private System.Windows.Forms.MenuItem resetMenuItem;
    private System.Windows.Forms.MenuItem menuItem6;
    private System.Windows.Forms.MenuItem plotLocationMenuItem;
    private System.Windows.Forms.MenuItem plotWindowMenuItem;
    private System.Windows.Forms.MenuItem plotBottomMenuItem;
    private System.Windows.Forms.MenuItem plotRightMenuItem;
		private System.Windows.Forms.MenuItem webMenuItem;
    private System.Windows.Forms.MenuItem runWebServerMenuItem;
    private System.Windows.Forms.MenuItem serverPortMenuItem;
    private System.Windows.Forms.MenuItem menuItem5;
    private System.Windows.Forms.MenuItem mainboardMenuItem;
    private System.Windows.Forms.MenuItem cpuMenuItem;
    private System.Windows.Forms.MenuItem gpuMenuItem;
    private System.Windows.Forms.MenuItem fanControllerMenuItem;
    private System.Windows.Forms.MenuItem ramMenuItem;
    private System.Windows.Forms.MenuItem logSensorsMenuItem;
    private System.Windows.Forms.MenuItem logSeparatorMenuItem;
    private System.Windows.Forms.MenuItem loggingIntervalMenuItem;
    private System.Windows.Forms.MenuItem log1sMenuItem;
    private System.Windows.Forms.MenuItem log2sMenuItem;
    private System.Windows.Forms.MenuItem log5sMenuItem;
    private System.Windows.Forms.MenuItem log10sMenuItem;
    private System.Windows.Forms.MenuItem log30sMenuItem;
    private System.Windows.Forms.MenuItem log1minMenuItem;
    private System.Windows.Forms.MenuItem log2minMenuItem;
    private System.Windows.Forms.MenuItem log5minMenuItem;
    private System.Windows.Forms.MenuItem log10minMenuItem;
    private System.Windows.Forms.MenuItem log30minMenuItem;
    private System.Windows.Forms.MenuItem log1hMenuItem;
    private System.Windows.Forms.MenuItem log2hMenuItem;
    private System.Windows.Forms.MenuItem log6hMenuItem;
  }
}