forked from petabridge/akka-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.Designer.cs
117 lines (110 loc) · 5.3 KB
/
Main.Designer.cs
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
namespace ChartApp
{
partial class Main
{
/// <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()
{
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.sysChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.btnCpu = new System.Windows.Forms.Button();
this.btnMemory = new System.Windows.Forms.Button();
this.btnDisk = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.sysChart)).BeginInit();
this.SuspendLayout();
//
// sysChart
//
chartArea2.Name = "ChartArea1";
this.sysChart.ChartAreas.Add(chartArea2);
this.sysChart.Dock = System.Windows.Forms.DockStyle.Fill;
legend2.Name = "Legend1";
this.sysChart.Legends.Add(legend2);
this.sysChart.Location = new System.Drawing.Point(0, 0);
this.sysChart.Name = "sysChart";
series2.ChartArea = "ChartArea1";
series2.Legend = "Legend1";
series2.Name = "Series1";
this.sysChart.Series.Add(series2);
this.sysChart.Size = new System.Drawing.Size(684, 446);
this.sysChart.TabIndex = 0;
this.sysChart.Text = "sysChart";
//
// btnCpu
//
this.btnCpu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnCpu.Location = new System.Drawing.Point(562, 274);
this.btnCpu.Name = "btnCpu";
this.btnCpu.Size = new System.Drawing.Size(110, 41);
this.btnCpu.TabIndex = 1;
this.btnCpu.Text = "CPU (ON)";
this.btnCpu.UseVisualStyleBackColor = true;
this.btnCpu.Click += new System.EventHandler(this.btnCpu_Click);
//
// btnMemory
//
this.btnMemory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnMemory.Location = new System.Drawing.Point(562, 321);
this.btnMemory.Name = "btnMemory";
this.btnMemory.Size = new System.Drawing.Size(110, 41);
this.btnMemory.TabIndex = 2;
this.btnMemory.Text = "MEMORY (OFF)";
this.btnMemory.UseVisualStyleBackColor = true;
this.btnMemory.Click += new System.EventHandler(this.btnMemory_Click);
//
// btnDisk
//
this.btnDisk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnDisk.Location = new System.Drawing.Point(562, 368);
this.btnDisk.Name = "btnDisk";
this.btnDisk.Size = new System.Drawing.Size(110, 41);
this.btnDisk.TabIndex = 3;
this.btnDisk.Text = "DISK (OFF)";
this.btnDisk.UseVisualStyleBackColor = true;
this.btnDisk.Click += new System.EventHandler(this.btnDisk_Click);
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(684, 446);
this.Controls.Add(this.btnDisk);
this.Controls.Add(this.btnMemory);
this.Controls.Add(this.btnCpu);
this.Controls.Add(this.sysChart);
this.Name = "Main";
this.Text = "System Metrics";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
this.Load += new System.EventHandler(this.Main_Load);
((System.ComponentModel.ISupportInitialize)(this.sysChart)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart sysChart;
private System.Windows.Forms.Button btnCpu;
private System.Windows.Forms.Button btnMemory;
private System.Windows.Forms.Button btnDisk;
}
}