forked from kugelrund/LiveSplit.MemoryGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextStyleOverrideControl.Designer.cs
109 lines (104 loc) · 5.01 KB
/
TextStyleOverrideControl.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
namespace LiveSplit.MemoryGraph
{
partial class TextStyleOverrideControl
{
/// <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 Component 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.chkOverrideFont = new System.Windows.Forms.CheckBox();
this.btnFont = new System.Windows.Forms.Button();
this.chkOverrideColor = new System.Windows.Forms.CheckBox();
this.btnColor = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// chkOverrideFont
//
this.chkOverrideFont.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.chkOverrideFont.AutoSize = true;
this.chkOverrideFont.Location = new System.Drawing.Point(187, 7);
this.chkOverrideFont.Margin = new System.Windows.Forms.Padding(40, 4, 0, 4);
this.chkOverrideFont.Name = "chkOverrideFont";
this.chkOverrideFont.Size = new System.Drawing.Size(121, 21);
this.chkOverrideFont.TabIndex = 8;
this.chkOverrideFont.Text = "Override Font:";
this.chkOverrideFont.UseVisualStyleBackColor = true;
this.chkOverrideFont.CheckedChanged += new System.EventHandler(this.chkOverrideFont_CheckedChanged);
//
// btnFont
//
this.btnFont.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnFont.Location = new System.Drawing.Point(315, 4);
this.btnFont.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.btnFont.Name = "btnFont";
this.btnFont.Size = new System.Drawing.Size(237, 26);
this.btnFont.TabIndex = 7;
this.btnFont.Text = "Choose...";
this.btnFont.UseVisualStyleBackColor = true;
this.btnFont.Click += new System.EventHandler(this.btnFont_Click);
//
// chkOverrideColor
//
this.chkOverrideColor.AutoSize = true;
this.chkOverrideColor.Location = new System.Drawing.Point(0, 7);
this.chkOverrideColor.Margin = new System.Windows.Forms.Padding(4, 4, 0, 4);
this.chkOverrideColor.Name = "chkOverrideColor";
this.chkOverrideColor.Size = new System.Drawing.Size(126, 21);
this.chkOverrideColor.TabIndex = 6;
this.chkOverrideColor.Text = "Override Color:";
this.chkOverrideColor.UseVisualStyleBackColor = true;
this.chkOverrideColor.CheckedChanged += new System.EventHandler(this.chkOverrideColor_CheckedChanged);
//
// btnColor
//
this.btnColor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnColor.Location = new System.Drawing.Point(131, 5);
this.btnColor.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.btnColor.Name = "btnColor";
this.btnColor.Size = new System.Drawing.Size(24, 25);
this.btnColor.TabIndex = 5;
this.btnColor.UseVisualStyleBackColor = false;
this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
//
// TextStyleOverrideControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.chkOverrideFont);
this.Controls.Add(this.btnFont);
this.Controls.Add(this.chkOverrideColor);
this.Controls.Add(this.btnColor);
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "TextStyleOverrideControl";
this.Size = new System.Drawing.Size(551, 34);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox chkOverrideFont;
private System.Windows.Forms.Button btnFont;
private System.Windows.Forms.CheckBox chkOverrideColor;
private System.Windows.Forms.Button btnColor;
}
}