summaryrefslogtreecommitdiff
path: root/MapEd/NewForm.Designer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MapEd/NewForm.Designer.cs')
-rw-r--r--MapEd/NewForm.Designer.cs232
1 files changed, 232 insertions, 0 deletions
diff --git a/MapEd/NewForm.Designer.cs b/MapEd/NewForm.Designer.cs
new file mode 100644
index 0000000..9c8c321
--- /dev/null
+++ b/MapEd/NewForm.Designer.cs
@@ -0,0 +1,232 @@
+namespace MapEd
+{
+ partial class NewForm
+ {
+ /// <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.radioButton8x8 = new System.Windows.Forms.RadioButton();
+ this.label1 = new System.Windows.Forms.Label();
+ this.radioButton16x16 = new System.Windows.Forms.RadioButton();
+ this.label2 = new System.Windows.Forms.Label();
+ this.tilemap = new System.Windows.Forms.TextBox();
+ this.selectButton = new System.Windows.Forms.Button();
+ this.cancelButton = new System.Windows.Forms.Button();
+ this.okButton = new System.Windows.Forms.Button();
+ this.label3 = new System.Windows.Forms.Label();
+ this.mapWidth = new System.Windows.Forms.NumericUpDown();
+ this.mapHeight = new System.Windows.Forms.NumericUpDown();
+ this.label4 = new System.Windows.Forms.Label();
+ ((System.ComponentModel.ISupportInitialize)(this.mapWidth)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.mapHeight)).BeginInit();
+ this.SuspendLayout();
+ //
+ // radioButton8x8
+ //
+ this.radioButton8x8.AutoSize = true;
+ this.radioButton8x8.Checked = true;
+ this.radioButton8x8.Location = new System.Drawing.Point(12, 29);
+ this.radioButton8x8.Name = "radioButton8x8";
+ this.radioButton8x8.Size = new System.Drawing.Size(42, 17);
+ this.radioButton8x8.TabIndex = 0;
+ this.radioButton8x8.TabStop = true;
+ this.radioButton8x8.Text = "8x8";
+ this.radioButton8x8.UseVisualStyleBackColor = true;
+ this.radioButton8x8.Click += new System.EventHandler(this.On8x8);
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(9, 13);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(47, 13);
+ this.label1.TabIndex = 1;
+ this.label1.Text = "Tile Size";
+ //
+ // radioButton16x16
+ //
+ this.radioButton16x16.AutoSize = true;
+ this.radioButton16x16.Location = new System.Drawing.Point(60, 29);
+ this.radioButton16x16.Name = "radioButton16x16";
+ this.radioButton16x16.Size = new System.Drawing.Size(54, 17);
+ this.radioButton16x16.TabIndex = 2;
+ this.radioButton16x16.Text = "16x16";
+ this.radioButton16x16.UseVisualStyleBackColor = true;
+ this.radioButton16x16.Click += new System.EventHandler(this.On16x16);
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(9, 93);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(48, 13);
+ this.label2.TabIndex = 3;
+ this.label2.Text = "Tile Map";
+ //
+ // tilemap
+ //
+ this.tilemap.Location = new System.Drawing.Point(12, 109);
+ this.tilemap.Name = "tilemap";
+ this.tilemap.Size = new System.Drawing.Size(205, 20);
+ this.tilemap.TabIndex = 4;
+ //
+ // selectButton
+ //
+ this.selectButton.Location = new System.Drawing.Point(223, 109);
+ this.selectButton.Name = "selectButton";
+ this.selectButton.Size = new System.Drawing.Size(75, 23);
+ this.selectButton.TabIndex = 5;
+ this.selectButton.Text = "Select...";
+ this.selectButton.UseVisualStyleBackColor = true;
+ this.selectButton.Click += new System.EventHandler(this.OnSelect);
+ //
+ // cancelButton
+ //
+ this.cancelButton.Location = new System.Drawing.Point(225, 138);
+ this.cancelButton.Name = "cancelButton";
+ this.cancelButton.Size = new System.Drawing.Size(75, 23);
+ this.cancelButton.TabIndex = 6;
+ this.cancelButton.Text = "Cancel";
+ this.cancelButton.UseVisualStyleBackColor = true;
+ this.cancelButton.Click += new System.EventHandler(this.OnCancel);
+ //
+ // okButton
+ //
+ this.okButton.Enabled = false;
+ this.okButton.Location = new System.Drawing.Point(144, 138);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(75, 23);
+ this.okButton.TabIndex = 7;
+ this.okButton.Text = "OK";
+ this.okButton.UseVisualStyleBackColor = true;
+ this.okButton.Click += new System.EventHandler(this.OnOK);
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(13, 53);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(51, 13);
+ this.label3.TabIndex = 8;
+ this.label3.Text = "Map Size";
+ //
+ // mapWidth
+ //
+ this.mapWidth.Location = new System.Drawing.Point(12, 70);
+ this.mapWidth.Maximum = new decimal(new int[] {
+ 256,
+ 0,
+ 0,
+ 0});
+ this.mapWidth.Minimum = new decimal(new int[] {
+ 32,
+ 0,
+ 0,
+ 0});
+ this.mapWidth.Name = "mapWidth";
+ this.mapWidth.Size = new System.Drawing.Size(52, 20);
+ this.mapWidth.TabIndex = 9;
+ this.mapWidth.Value = new decimal(new int[] {
+ 32,
+ 0,
+ 0,
+ 0});
+ //
+ // mapHeight
+ //
+ this.mapHeight.Location = new System.Drawing.Point(95, 70);
+ this.mapHeight.Maximum = new decimal(new int[] {
+ 256,
+ 0,
+ 0,
+ 0});
+ this.mapHeight.Minimum = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 0});
+ this.mapHeight.Name = "mapHeight";
+ this.mapHeight.Size = new System.Drawing.Size(52, 20);
+ this.mapHeight.TabIndex = 10;
+ this.mapHeight.Value = new decimal(new int[] {
+ 32,
+ 0,
+ 0,
+ 0});
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(71, 72);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(18, 13);
+ this.label4.TabIndex = 11;
+ this.label4.Text = "by";
+ //
+ // NewForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(307, 171);
+ this.Controls.Add(this.label4);
+ this.Controls.Add(this.mapHeight);
+ this.Controls.Add(this.mapWidth);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.cancelButton);
+ this.Controls.Add(this.selectButton);
+ this.Controls.Add(this.tilemap);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.radioButton16x16);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.radioButton8x8);
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "NewForm";
+ this.Text = "New Map";
+ ((System.ComponentModel.ISupportInitialize)(this.mapWidth)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.mapHeight)).EndInit();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.RadioButton radioButton8x8;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.RadioButton radioButton16x16;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TextBox tilemap;
+ private System.Windows.Forms.Button selectButton;
+ private System.Windows.Forms.Button cancelButton;
+ private System.Windows.Forms.Button okButton;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.NumericUpDown mapWidth;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.NumericUpDown mapHeight;
+ }
+} \ No newline at end of file