-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlatformPrompt.Designer.cs
133 lines (127 loc) · 5.81 KB
/
PlatformPrompt.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
131
132
133
namespace LVLTool
{
partial class PlatformPrompt
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.mPcButton = new System.Windows.Forms.RadioButton();
this.mXboxButton = new System.Windows.Forms.RadioButton();
this.mPs2Button = new System.Windows.Forms.RadioButton();
this.mOkButton = new System.Windows.Forms.Button();
this.mCancelButton = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.mPs2Button);
this.groupBox1.Controls.Add(this.mXboxButton);
this.groupBox1.Controls.Add(this.mPcButton);
this.groupBox1.Location = new System.Drawing.Point(12, 26);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(231, 46);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Platform";
//
// mPcButton
//
this.mPcButton.AutoSize = true;
this.mPcButton.Checked = true;
this.mPcButton.Location = new System.Drawing.Point(20, 20);
this.mPcButton.Name = "mPcButton";
this.mPcButton.Size = new System.Drawing.Size(39, 17);
this.mPcButton.TabIndex = 0;
this.mPcButton.TabStop = true;
this.mPcButton.Text = "PC";
this.mPcButton.UseVisualStyleBackColor = true;
//
// mXboxButton
//
this.mXboxButton.AutoSize = true;
this.mXboxButton.Location = new System.Drawing.Point(80, 20);
this.mXboxButton.Name = "mXboxButton";
this.mXboxButton.Size = new System.Drawing.Size(54, 17);
this.mXboxButton.TabIndex = 1;
this.mXboxButton.Text = "XBOX";
this.mXboxButton.UseVisualStyleBackColor = true;
//
// mPs2Button
//
this.mPs2Button.AutoSize = true;
this.mPs2Button.Location = new System.Drawing.Point(155, 20);
this.mPs2Button.Name = "mPs2Button";
this.mPs2Button.Size = new System.Drawing.Size(45, 17);
this.mPs2Button.TabIndex = 2;
this.mPs2Button.Text = "PS2";
this.mPs2Button.UseVisualStyleBackColor = true;
//
// mOkButton
//
this.mOkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.mOkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.mOkButton.Location = new System.Drawing.Point(108, 133);
this.mOkButton.Name = "mOkButton";
this.mOkButton.Size = new System.Drawing.Size(75, 23);
this.mOkButton.TabIndex = 1;
this.mOkButton.Text = "&OK";
this.mOkButton.UseVisualStyleBackColor = true;
//
// mCancelButton
//
this.mCancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.mCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.mCancelButton.Location = new System.Drawing.Point(189, 133);
this.mCancelButton.Name = "mCancelButton";
this.mCancelButton.Size = new System.Drawing.Size(75, 23);
this.mCancelButton.TabIndex = 2;
this.mCancelButton.Text = "&Cancel";
this.mCancelButton.UseVisualStyleBackColor = true;
//
// PlatformPrompt
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(267, 168);
this.Controls.Add(this.mCancelButton);
this.Controls.Add(this.mOkButton);
this.Controls.Add(this.groupBox1);
this.MaximumSize = new System.Drawing.Size(283, 207);
this.MinimumSize = new System.Drawing.Size(283, 207);
this.Name = "PlatformPrompt";
this.Text = "Which Platform?";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton mPs2Button;
private System.Windows.Forms.RadioButton mXboxButton;
private System.Windows.Forms.RadioButton mPcButton;
private System.Windows.Forms.Button mOkButton;
private System.Windows.Forms.Button mCancelButton;
}
}