-
Notifications
You must be signed in to change notification settings - Fork 3
/
AboutForm.Designer.cs
127 lines (121 loc) · 5.49 KB
/
AboutForm.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
namespace MultiWiiWinGUI
{
partial class frmAbout
{
/// <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.button1 = new System.Windows.Forms.Button();
this.l_version = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.l_mwver = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(473, 189);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(115, 32);
this.button1.TabIndex = 0;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// l_version
//
this.l_version.BackColor = System.Drawing.Color.Gray;
this.l_version.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.l_version.ForeColor = System.Drawing.Color.LightGray;
this.l_version.Location = new System.Drawing.Point(451, 75);
this.l_version.Name = "l_version";
this.l_version.Size = new System.Drawing.Size(132, 18);
this.l_version.TabIndex = 1;
this.l_version.Text = "Version 1.0 Beta";
this.l_version.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Gray;
this.label2.Location = new System.Drawing.Point(512, 258);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(76, 13);
this.label2.TabIndex = 2;
this.label2.Text = "1.0.0000.0000";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Gray;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.DarkGray;
this.label3.Location = new System.Drawing.Point(375, 93);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(205, 15);
this.label3.TabIndex = 3;
this.label3.Text = "by András Schäffer (EOSBandi)";
//
// l_mwver
//
this.l_mwver.BackColor = System.Drawing.Color.Gray;
this.l_mwver.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.l_mwver.ForeColor = System.Drawing.Color.Maroon;
this.l_mwver.Location = new System.Drawing.Point(378, 119);
this.l_mwver.Name = "l_mwver";
this.l_mwver.Size = new System.Drawing.Size(202, 44);
this.l_mwver.TabIndex = 6;
this.l_mwver.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// frmAbout
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::MultiWiiWinGUI.Properties.Resources.splash;
this.ClientSize = new System.Drawing.Size(590, 281);
this.ControlBox = false;
this.Controls.Add(this.l_mwver);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.l_version);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmAbout";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.TopMost = true;
this.Load += new System.EventHandler(this.frmAbout_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label l_version;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label l_mwver;
}
}