-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCPUFrequencyForm.Designer.cs
88 lines (81 loc) · 3.54 KB
/
CPUFrequencyForm.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
namespace CPUFrequencyMonitor
{
partial class CPUFrequencyForm
{
/// <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.labelHintCpuFrequencyConst = new System.Windows.Forms.Label();
this.textBoxFrequency = new System.Windows.Forms.TextBox();
this.labelHintMhzConst = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// labelHintCpuFrequencyConst
//
this.labelHintCpuFrequencyConst.AutoSize = true;
this.labelHintCpuFrequencyConst.Location = new System.Drawing.Point(12, 15);
this.labelHintCpuFrequencyConst.Name = "labelHintCpuFrequencyConst";
this.labelHintCpuFrequencyConst.Size = new System.Drawing.Size(82, 13);
this.labelHintCpuFrequencyConst.TabIndex = 1;
this.labelHintCpuFrequencyConst.Text = "CPU frequency:";
//
// textBoxFrequency
//
this.textBoxFrequency.Enabled = false;
this.textBoxFrequency.Location = new System.Drawing.Point(100, 12);
this.textBoxFrequency.MaxLength = 5;
this.textBoxFrequency.Name = "textBoxFrequency";
this.textBoxFrequency.Size = new System.Drawing.Size(57, 20);
this.textBoxFrequency.TabIndex = 2;
this.textBoxFrequency.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// labelHintMhzConst
//
this.labelHintMhzConst.AutoSize = true;
this.labelHintMhzConst.Location = new System.Drawing.Point(163, 15);
this.labelHintMhzConst.Name = "labelHintMhzConst";
this.labelHintMhzConst.Size = new System.Drawing.Size(29, 13);
this.labelHintMhzConst.TabIndex = 3;
this.labelHintMhzConst.Text = "MHz";
//
// CPUFrequencyForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(202, 43);
this.Controls.Add(this.labelHintMhzConst);
this.Controls.Add(this.textBoxFrequency);
this.Controls.Add(this.labelHintCpuFrequencyConst);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "CPUFrequencyForm";
this.ShowIcon = false;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelHintCpuFrequencyConst;
private System.Windows.Forms.TextBox textBoxFrequency;
private System.Windows.Forms.Label labelHintMhzConst;
}
}