This repository was archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStatistics.Designer.cs
125 lines (120 loc) · 5.9 KB
/
Statistics.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
namespace EEditor
{
partial class Statistics
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Statistics));
this.panel1 = new System.Windows.Forms.Panel();
this.fgradioButton = new System.Windows.Forms.RadioButton();
this.actradioButton = new System.Windows.Forms.RadioButton();
this.bgradioButton = new System.Windows.Forms.RadioButton();
this.decorradioButton = new System.Windows.Forms.RadioButton();
this.SuspendLayout();
//
// panel1
//
this.panel1.Location = new System.Drawing.Point(12, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(289, 270);
this.panel1.TabIndex = 2;
//
// fgradioButton
//
this.fgradioButton.Appearance = System.Windows.Forms.Appearance.Button;
this.fgradioButton.AutoSize = true;
this.fgradioButton.Image = global::EEditor.Properties.Resources.eeditor_block;
this.fgradioButton.Location = new System.Drawing.Point(36, 301);
this.fgradioButton.Name = "fgradioButton";
this.fgradioButton.Size = new System.Drawing.Size(22, 22);
this.fgradioButton.TabIndex = 3;
this.fgradioButton.TabStop = true;
this.fgradioButton.UseVisualStyleBackColor = true;
this.fgradioButton.CheckedChanged += new System.EventHandler(this.fgradioButton_CheckedChanged);
//
// actradioButton
//
this.actradioButton.Appearance = System.Windows.Forms.Appearance.Button;
this.actradioButton.AutoSize = true;
this.actradioButton.Image = global::EEditor.Properties.Resources.eeditor_action;
this.actradioButton.Location = new System.Drawing.Point(64, 301);
this.actradioButton.Name = "actradioButton";
this.actradioButton.Size = new System.Drawing.Size(22, 22);
this.actradioButton.TabIndex = 4;
this.actradioButton.TabStop = true;
this.actradioButton.UseVisualStyleBackColor = true;
this.actradioButton.CheckedChanged += new System.EventHandler(this.actradioButton_CheckedChanged);
//
// bgradioButton
//
this.bgradioButton.Appearance = System.Windows.Forms.Appearance.Button;
this.bgradioButton.AutoSize = true;
this.bgradioButton.Image = global::EEditor.Properties.Resources.eeditor_bg;
this.bgradioButton.Location = new System.Drawing.Point(120, 301);
this.bgradioButton.Name = "bgradioButton";
this.bgradioButton.Size = new System.Drawing.Size(22, 22);
this.bgradioButton.TabIndex = 5;
this.bgradioButton.TabStop = true;
this.bgradioButton.UseVisualStyleBackColor = true;
this.bgradioButton.CheckedChanged += new System.EventHandler(this.bgradioButton_CheckedChanged);
//
// decorradioButton
//
this.decorradioButton.Appearance = System.Windows.Forms.Appearance.Button;
this.decorradioButton.AutoSize = true;
this.decorradioButton.Image = global::EEditor.Properties.Resources.eeditor_decor;
this.decorradioButton.Location = new System.Drawing.Point(92, 301);
this.decorradioButton.Name = "decorradioButton";
this.decorradioButton.Size = new System.Drawing.Size(22, 22);
this.decorradioButton.TabIndex = 6;
this.decorradioButton.TabStop = true;
this.decorradioButton.UseVisualStyleBackColor = true;
this.decorradioButton.CheckedChanged += new System.EventHandler(this.decorradioButton_CheckedChanged);
//
// Statistics
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(313, 331);
this.Controls.Add(this.decorradioButton);
this.Controls.Add(this.bgradioButton);
this.Controls.Add(this.actradioButton);
this.Controls.Add(this.fgradioButton);
this.Controls.Add(this.panel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Statistics";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Statistics";
this.Load += new System.EventHandler(this.Statistics_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.RadioButton fgradioButton;
private System.Windows.Forms.RadioButton actradioButton;
private System.Windows.Forms.RadioButton bgradioButton;
private System.Windows.Forms.RadioButton decorradioButton;
}
}