forked from petabridge/akka-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.Designer.cs
131 lines (124 loc) · 6.15 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
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 chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series1 = 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();
this.btnPauseResume = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.sysChart)).BeginInit();
this.SuspendLayout();
//
// sysChart
//
chartArea1.Name = "ChartArea1";
this.sysChart.ChartAreas.Add(chartArea1);
this.sysChart.Dock = System.Windows.Forms.DockStyle.Fill;
legend1.Name = "Legend1";
this.sysChart.Legends.Add(legend1);
this.sysChart.Location = new System.Drawing.Point(0, 0);
this.sysChart.Name = "sysChart";
series1.ChartArea = "ChartArea1";
series1.Legend = "Legend1";
series1.Name = "Series1";
this.sysChart.Series.Add(series1);
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);
//
// btnPauseResume
//
this.btnPauseResume.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnPauseResume.Location = new System.Drawing.Point(562, 205);
this.btnPauseResume.Name = "btnPauseResume";
this.btnPauseResume.Size = new System.Drawing.Size(110, 38);
this.btnPauseResume.TabIndex = 4;
this.btnPauseResume.Text = "PAUSE ||";
this.btnPauseResume.UseVisualStyleBackColor = true;
this.btnPauseResume.Click += new System.EventHandler(this.btnPauseResume_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.btnPauseResume);
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;
private System.Windows.Forms.Button btnPauseResume;
}
}