forked from Violet-CLM/MLLE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TileSetOrganizer.Designer.cs
178 lines (172 loc) · 8 KB
/
TileSetOrganizer.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
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
namespace MLLE
{
partial class TileSetOrganizer
{
/// <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.Add = new System.Windows.Forms.Button();
this.OK = new System.Windows.Forms.Button();
this.Remove = new System.Windows.Forms.Button();
this.Refresh = new System.Windows.Forms.Button();
this.Build = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.columnName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnTileset = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.sourceImage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.sourceMask = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.SuspendLayout();
//
// Add
//
this.Add.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Add.Location = new System.Drawing.Point(437, 12);
this.Add.Name = "Add";
this.Add.Size = new System.Drawing.Size(75, 23);
this.Add.TabIndex = 1;
this.Add.Text = "Add...";
this.Add.UseVisualStyleBackColor = true;
this.Add.Click += new System.EventHandler(this.Add_Click);
//
// OK
//
this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.OK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.OK.Location = new System.Drawing.Point(436, 246);
this.OK.Name = "OK";
this.OK.Size = new System.Drawing.Size(75, 23);
this.OK.TabIndex = 0;
this.OK.Text = "OK";
this.OK.UseVisualStyleBackColor = true;
this.OK.Click += new System.EventHandler(this.OK_Click);
//
// Remove
//
this.Remove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Remove.Location = new System.Drawing.Point(437, 41);
this.Remove.Name = "Remove";
this.Remove.Size = new System.Drawing.Size(75, 23);
this.Remove.TabIndex = 2;
this.Remove.Text = "Remove";
this.Remove.UseVisualStyleBackColor = true;
this.Remove.Click += new System.EventHandler(this.Remove_Click);
//
// Refresh
//
this.Refresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Refresh.Location = new System.Drawing.Point(437, 85);
this.Refresh.Name = "Refresh";
this.Refresh.Size = new System.Drawing.Size(75, 23);
this.Refresh.TabIndex = 3;
this.Refresh.Text = "Refresh";
this.Refresh.UseVisualStyleBackColor = true;
this.Refresh.Click += new System.EventHandler(this.Refresh_Click);
//
// Build
//
this.Build.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Build.Location = new System.Drawing.Point(437, 134);
this.Build.Name = "Build";
this.Build.Size = new System.Drawing.Size(75, 23);
this.Build.TabIndex = 4;
this.Build.Text = "Build";
this.Build.UseVisualStyleBackColor = true;
this.Build.Click += new System.EventHandler(this.Build_Click);
//
// listView1
//
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnName,
this.columnTileset,
this.sourceImage,
this.sourceMask});
this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listView1.HideSelection = false;
this.listView1.Location = new System.Drawing.Point(13, 13);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.ShowGroups = false;
this.listView1.Size = new System.Drawing.Size(417, 256);
this.listView1.TabIndex = 5;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
//
// columnName
//
this.columnName.Text = "Name";
this.columnName.Width = 101;
//
// columnTileset
//
this.columnTileset.Text = "Filename";
this.columnTileset.Width = 97;
//
// sourceImage
//
this.sourceImage.Text = "Source Image";
this.sourceImage.Width = 118;
//
// sourceMask
//
this.sourceMask.Text = "Source Mask";
this.sourceMask.Width = 232;
//
// TileSetOrganizer
//
this.AcceptButton = this.OK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(524, 281);
this.Controls.Add(this.listView1);
this.Controls.Add(this.Build);
this.Controls.Add(this.Refresh);
this.Controls.Add(this.Remove);
this.Controls.Add(this.OK);
this.Controls.Add(this.Add);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(540, 320);
this.Name = "TileSetOrganizer";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Tile Set Organizer";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button Add;
private System.Windows.Forms.Button OK;
private System.Windows.Forms.Button Remove;
private System.Windows.Forms.Button Refresh;
private System.Windows.Forms.Button Build;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.ColumnHeader sourceImage;
private System.Windows.Forms.ColumnHeader sourceMask;
private System.Windows.Forms.ColumnHeader columnTileset;
}
}