Rev 1390 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
namespace SpriteEditor
{
partial class NewSpriteDialog
{
/// <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.lbTextures = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.btnAdd = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.btnUp = new System.Windows.Forms.Button();
this.btnDown = new System.Windows.Forms.Button();
this.picPreview = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.dlgAddTextures = new System.Windows.Forms.OpenFileDialog();
((System.ComponentModel.ISupportInitialize)(this.picPreview)).BeginInit();
this.SuspendLayout();
//
// lbTextures
//
this.lbTextures.FormattingEnabled = true;
this.lbTextures.Location = new System.Drawing.Point(30,
40);
this.lbTextures.Name = "lbTextures";
this.lbTextures.Size = new System.Drawing.Size(250,
381);
this.lbTextures.TabIndex = 0;
this.lbTextures.SelectedIndexChanged += new System.EventHandler(this.TextureSelection_Changed);
this.lbTextures.SelectedValueChanged += new System.EventHandler(this.TextureSelection_Changed);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27,
24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65,
13);
this.label1.TabIndex = 1;
this.label1.Text = "&Texture List:";
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(30,
427);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(120,
28);
this.btnAdd.TabIndex = 2;
this.btnAdd.Text = "&Add...";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.AddTextures_Click);
//
// btnRemove
//
this.btnRemove.Location = new System.Drawing.Point(160,
427);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(120,
28);
this.btnRemove.TabIndex = 3;
this.btnRemove.Text = "&Remove";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.RemoveTextures_Click);
//
// btnUp
//
this.btnUp.Location = new System.Drawing.Point(286,
40);
this.btnUp.Name = "btnUp";
this.btnUp.Size = new System.Drawing.Size(80,
28);
this.btnUp.TabIndex = 4;
this.btnUp.Text = "&Up";
this.btnUp.UseVisualStyleBackColor = true;
this.btnUp.Click += new System.EventHandler(this.MoveUp_Click);
//
// btnDown
//
this.btnDown.Location = new System.Drawing.Point(286,
74);
this.btnDown.Name = "btnDown";
this.btnDown.Size = new System.Drawing.Size(80,
28);
this.btnDown.TabIndex = 5;
this.btnDown.Text = "&Down";
this.btnDown.UseVisualStyleBackColor = true;
this.btnDown.Click += new System.EventHandler(this.MoveDown_Click);
//
// picPreview
//
this.picPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.picPreview.Location = new System.Drawing.Point(384,
43);
this.picPreview.Name = "picPreview";
this.picPreview.Size = new System.Drawing.Size(160,
160);
this.picPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picPreview.TabIndex = 6;
this.picPreview.TabStop = false;
//
// label2
//
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.label2.Location = new System.Drawing.Point(30,
476);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(514,
2);
this.label2.TabIndex = 7;
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Enabled = false;
this.btnOK.Location = new System.Drawing.Point(314,
493);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(112,
28);
this.btnOK.TabIndex = 8;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(432,
493);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(112,
28);
this.btnCancel.TabIndex = 9;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// dlgAddTextures
//
this.dlgAddTextures.Filter = "Texture files (*.png)|*.png|All files|*.*";
this.dlgAddTextures.Multiselect = true;
//
// NewSpriteDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F
);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(568,
539);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.label2);
this.Controls.Add(this.picPreview);
this.Controls.Add(this.btnDown);
this.Controls.Add(this.btnUp);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.label1);
this.Controls.Add(this.lbTextures);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "NewSpriteDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Create New Sprite";
this.Load += new System.EventHandler(this.NewSpriteDialog_Load);
((System.ComponentModel.ISupportInitialize)(this.picPreview)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox lbTextures
;
private System.Windows.Forms.Label label1
;
private System.Windows.Forms.Button btnAdd
;
private System.Windows.Forms.Button btnRemove
;
private System.Windows.Forms.Button btnUp
;
private System.Windows.Forms.Button btnDown
;
private System.Windows.Forms.PictureBox picPreview
;
private System.Windows.Forms.Label label2
;
private System.Windows.Forms.Button btnOK
;
private System.Windows.Forms.Button btnCancel
;
private System.Windows.Forms.OpenFileDialog dlgAddTextures
;
}
}