mirror of
https://github.com/islehorse/HorseisleMapEditor.git
synced 2025-04-23 13:15:57 +12:00
Add files via upload
This commit is contained in:
parent
4323c7e74c
commit
9f1f97712e
9 changed files with 387 additions and 17 deletions
136
SilicaTilesEditor/NewMapForm.Designer.cs
generated
Normal file
136
SilicaTilesEditor/NewMapForm.Designer.cs
generated
Normal file
|
@ -0,0 +1,136 @@
|
|||
|
||||
namespace SilicaTilesEditor
|
||||
{
|
||||
partial class NewMapForm
|
||||
{
|
||||
/// <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.heightUpDown = new System.Windows.Forms.NumericUpDown();
|
||||
this.widthUpDown = new System.Windows.Forms.NumericUpDown();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.createMap = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.heightUpDown)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.widthUpDown)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// heightUpDown
|
||||
//
|
||||
this.heightUpDown.Location = new System.Drawing.Point(57, 68);
|
||||
this.heightUpDown.Maximum = new decimal(new int[] {
|
||||
2147483647,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.heightUpDown.Name = "heightUpDown";
|
||||
this.heightUpDown.Size = new System.Drawing.Size(140, 20);
|
||||
this.heightUpDown.TabIndex = 0;
|
||||
//
|
||||
// widthUpDown
|
||||
//
|
||||
this.widthUpDown.Location = new System.Drawing.Point(57, 44);
|
||||
this.widthUpDown.Maximum = new decimal(new int[] {
|
||||
2147483647,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.widthUpDown.Name = "widthUpDown";
|
||||
this.widthUpDown.Size = new System.Drawing.Size(140, 20);
|
||||
this.widthUpDown.TabIndex = 1;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(13, 46);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(38, 13);
|
||||
this.label1.TabIndex = 2;
|
||||
this.label1.Text = "Width:";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Location = new System.Drawing.Point(10, 70);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(41, 13);
|
||||
this.label2.TabIndex = 3;
|
||||
this.label2.Text = "Height:";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(10, 19);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(85, 13);
|
||||
this.label3.TabIndex = 4;
|
||||
this.label3.Text = "Create new Map";
|
||||
//
|
||||
// createMap
|
||||
//
|
||||
this.createMap.Location = new System.Drawing.Point(16, 101);
|
||||
this.createMap.Name = "createMap";
|
||||
this.createMap.Size = new System.Drawing.Size(181, 23);
|
||||
this.createMap.TabIndex = 5;
|
||||
this.createMap.Text = "Create Map";
|
||||
this.createMap.UseVisualStyleBackColor = true;
|
||||
this.createMap.Click += new System.EventHandler(this.createMap_Click);
|
||||
//
|
||||
// NewMapForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(212, 136);
|
||||
this.Controls.Add(this.createMap);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.widthUpDown);
|
||||
this.Controls.Add(this.heightUpDown);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "NewMapForm";
|
||||
this.ShowInTaskbar = false;
|
||||
this.Text = "New Map";
|
||||
((System.ComponentModel.ISupportInitialize)(this.heightUpDown)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.widthUpDown)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.NumericUpDown heightUpDown;
|
||||
private System.Windows.Forms.NumericUpDown widthUpDown;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.Button createMap;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue