-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPackageLevelForm.Designer.cs
More file actions
179 lines (173 loc) · 8.59 KB
/
PackageLevelForm.Designer.cs
File metadata and controls
179 lines (173 loc) · 8.59 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
namespace MLLE
{
partial class PackageLevelForm
{
/// <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.textBox1 = new System.Windows.Forms.TextBox();
this.OKButton = new System.Windows.Forms.Button();
this.checkboxMissing = new System.Windows.Forms.CheckBox();
this.CancelButton = new System.Windows.Forms.Button();
this.checkboxMultipleLevels = new System.Windows.Forms.CheckBox();
this.checkboxExcludeDefault = new System.Windows.Forms.CheckBox();
this.checkboxIncludeMusic = new System.Windows.Forms.CheckBox();
this.checkboxAngelscriptFunctions = new System.Windows.Forms.CheckBox();
this.checkBoxMLLESet = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.BackColor = System.Drawing.SystemColors.Window;
this.textBox1.Location = new System.Drawing.Point(12, 78);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(390, 107);
this.textBox1.TabIndex = 7;
//
// OKButton
//
this.OKButton.Location = new System.Drawing.Point(327, 191);
this.OKButton.Name = "OKButton";
this.OKButton.Size = new System.Drawing.Size(75, 23);
this.OKButton.TabIndex = 0;
this.OKButton.Text = "Start";
this.OKButton.UseVisualStyleBackColor = true;
this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
//
// checkboxMissing
//
this.checkboxMissing.AutoSize = true;
this.checkboxMissing.Checked = true;
this.checkboxMissing.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkboxMissing.Location = new System.Drawing.Point(16, 10);
this.checkboxMissing.Name = "checkboxMissing";
this.checkboxMissing.Size = new System.Drawing.Size(136, 17);
this.checkboxMissing.TabIndex = 1;
this.checkboxMissing.Text = "Prompt for Missing Files";
this.checkboxMissing.UseVisualStyleBackColor = true;
//
// CancelButton
//
this.CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelButton.Location = new System.Drawing.Point(246, 192);
this.CancelButton.Name = "CancelButton";
this.CancelButton.Size = new System.Drawing.Size(75, 23);
this.CancelButton.TabIndex = 8;
this.CancelButton.Text = "Cancel";
this.CancelButton.UseVisualStyleBackColor = true;
//
// checkboxMultipleLevels
//
this.checkboxMultipleLevels.AutoSize = true;
this.checkboxMultipleLevels.Checked = true;
this.checkboxMultipleLevels.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkboxMultipleLevels.Location = new System.Drawing.Point(16, 34);
this.checkboxMultipleLevels.Name = "checkboxMultipleLevels";
this.checkboxMultipleLevels.Size = new System.Drawing.Size(142, 17);
this.checkboxMultipleLevels.TabIndex = 3;
this.checkboxMultipleLevels.Text = "Package Multiple Levels";
this.checkboxMultipleLevels.UseVisualStyleBackColor = true;
//
// checkboxExcludeDefault
//
this.checkboxExcludeDefault.AutoSize = true;
this.checkboxExcludeDefault.Checked = true;
this.checkboxExcludeDefault.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkboxExcludeDefault.Location = new System.Drawing.Point(228, 34);
this.checkboxExcludeDefault.Name = "checkboxExcludeDefault";
this.checkboxExcludeDefault.Size = new System.Drawing.Size(123, 17);
this.checkboxExcludeDefault.TabIndex = 4;
this.checkboxExcludeDefault.Text = "Exclude Official Files";
this.checkboxExcludeDefault.UseVisualStyleBackColor = true;
//
// checkboxIncludeMusic
//
this.checkboxIncludeMusic.AutoSize = true;
this.checkboxIncludeMusic.Checked = true;
this.checkboxIncludeMusic.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkboxIncludeMusic.Location = new System.Drawing.Point(228, 10);
this.checkboxIncludeMusic.Name = "checkboxIncludeMusic";
this.checkboxIncludeMusic.Size = new System.Drawing.Size(92, 17);
this.checkboxIncludeMusic.TabIndex = 2;
this.checkboxIncludeMusic.Text = "Include Music";
this.checkboxIncludeMusic.UseVisualStyleBackColor = true;
//
// checkboxAngelscriptFunctions
//
this.checkboxAngelscriptFunctions.AutoSize = true;
this.checkboxAngelscriptFunctions.Location = new System.Drawing.Point(16, 55);
this.checkboxAngelscriptFunctions.Name = "checkboxAngelscriptFunctions";
this.checkboxAngelscriptFunctions.Size = new System.Drawing.Size(211, 17);
this.checkboxAngelscriptFunctions.TabIndex = 5;
this.checkboxAngelscriptFunctions.Text = "Search AngelScript Function Filenames";
this.checkboxAngelscriptFunctions.UseVisualStyleBackColor = true;
//
// checkBoxMLLESet
//
this.checkBoxMLLESet.AutoSize = true;
this.checkBoxMLLESet.Location = new System.Drawing.Point(228, 55);
this.checkBoxMLLESet.Name = "checkBoxMLLESet";
this.checkBoxMLLESet.Size = new System.Drawing.Size(163, 17);
this.checkBoxMLLESet.TabIndex = 6;
this.checkBoxMLLESet.Text = "Include Smart Tile Definitions";
this.checkBoxMLLESet.UseVisualStyleBackColor = true;
//
// PackageLevelForm
//
this.AcceptButton = this.OKButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(414, 226);
this.Controls.Add(this.checkBoxMLLESet);
this.Controls.Add(this.checkboxAngelscriptFunctions);
this.Controls.Add(this.checkboxIncludeMusic);
this.Controls.Add(this.checkboxExcludeDefault);
this.Controls.Add(this.checkboxMultipleLevels);
this.Controls.Add(this.CancelButton);
this.Controls.Add(this.checkboxMissing);
this.Controls.Add(this.OKButton);
this.Controls.Add(this.textBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PackageLevelForm";
this.ShowInTaskbar = false;
this.Text = "Package in ZIP file";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button OKButton;
private System.Windows.Forms.CheckBox checkboxMissing;
private System.Windows.Forms.Button CancelButton;
private System.Windows.Forms.CheckBox checkboxMultipleLevels;
private System.Windows.Forms.CheckBox checkboxExcludeDefault;
private System.Windows.Forms.CheckBox checkboxIncludeMusic;
private System.Windows.Forms.CheckBox checkboxAngelscriptFunctions;
private System.Windows.Forms.CheckBox checkBoxMLLESet;
}
}