259 lines
15 KiB
C#
259 lines
15 KiB
C#
namespace ProjectConverter.GUI
|
|
{
|
|
partial class MainWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
|
|
this.textBoxSource = new System.Windows.Forms.TextBox();
|
|
this.buttonSearch = new System.Windows.Forms.Button();
|
|
this.comboBoxTarget = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.comboBoxType = new System.Windows.Forms.ComboBox();
|
|
this.buttonConvert = new System.Windows.Forms.Button();
|
|
this.textBoxDestination = new System.Windows.Forms.TextBox();
|
|
this.buttonSearch2 = new System.Windows.Forms.Button();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.buttonClose = new System.Windows.Forms.Label();
|
|
this.buttonHelp = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxSource
|
|
//
|
|
this.textBoxSource.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
|
|
this.textBoxSource.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
|
|
this.textBoxSource.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.textBoxSource.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.textBoxSource.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.textBoxSource.ForeColor = System.Drawing.Color.White;
|
|
this.textBoxSource.Location = new System.Drawing.Point(59, 80);
|
|
this.textBoxSource.MinimumSize = new System.Drawing.Size(2, 25);
|
|
this.textBoxSource.Name = "textBoxSource";
|
|
this.textBoxSource.Size = new System.Drawing.Size(321, 22);
|
|
this.textBoxSource.TabIndex = 0;
|
|
this.textBoxSource.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
//
|
|
// buttonSearch
|
|
//
|
|
this.buttonSearch.FlatAppearance.BorderColor = System.Drawing.Color.DimGray;
|
|
this.buttonSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.buttonSearch.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.buttonSearch.ForeColor = System.Drawing.Color.White;
|
|
this.buttonSearch.Location = new System.Drawing.Point(386, 80);
|
|
this.buttonSearch.Name = "buttonSearch";
|
|
this.buttonSearch.Size = new System.Drawing.Size(68, 22);
|
|
this.buttonSearch.TabIndex = 1;
|
|
this.buttonSearch.Text = "Search";
|
|
this.buttonSearch.UseVisualStyleBackColor = true;
|
|
this.buttonSearch.Click += new System.EventHandler(this.ButtonSearchClick);
|
|
//
|
|
// comboBoxTarget
|
|
//
|
|
this.comboBoxTarget.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
|
|
this.comboBoxTarget.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
|
|
this.comboBoxTarget.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.comboBoxTarget.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.comboBoxTarget.ForeColor = System.Drawing.Color.White;
|
|
this.comboBoxTarget.FormattingEnabled = true;
|
|
this.comboBoxTarget.Items.AddRange(new object[] {
|
|
"XNA -> ANX",
|
|
"ANX -> XNA"});
|
|
this.comboBoxTarget.Location = new System.Drawing.Point(281, 145);
|
|
this.comboBoxTarget.Name = "comboBoxTarget";
|
|
this.comboBoxTarget.Size = new System.Drawing.Size(159, 21);
|
|
this.comboBoxTarget.TabIndex = 3;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(12, 34);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(462, 43);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "Welcome! This tool enables you to convert your existing XNA projects to ANX proje" +
|
|
"cts.\r\nPlease select the project file you want to convert below:";
|
|
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Location = new System.Drawing.Point(56, 112);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(384, 27);
|
|
this.label2.TabIndex = 5;
|
|
this.label2.Text = "Now, please choose the format you want to convert this project to:";
|
|
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// comboBoxType
|
|
//
|
|
this.comboBoxType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
|
|
this.comboBoxType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
|
|
this.comboBoxType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.comboBoxType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.comboBoxType.ForeColor = System.Drawing.Color.White;
|
|
this.comboBoxType.FormattingEnabled = true;
|
|
this.comboBoxType.Items.AddRange(new object[] {
|
|
"Application",
|
|
"Content Project"});
|
|
this.comboBoxType.Location = new System.Drawing.Point(59, 145);
|
|
this.comboBoxType.Name = "comboBoxType";
|
|
this.comboBoxType.Size = new System.Drawing.Size(176, 21);
|
|
this.comboBoxType.TabIndex = 6;
|
|
//
|
|
// buttonConvert
|
|
//
|
|
this.buttonConvert.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.buttonConvert.Location = new System.Drawing.Point(101, 236);
|
|
this.buttonConvert.Name = "buttonConvert";
|
|
this.buttonConvert.Size = new System.Drawing.Size(296, 39);
|
|
this.buttonConvert.TabIndex = 7;
|
|
this.buttonConvert.Text = "Convert Project";
|
|
this.buttonConvert.UseVisualStyleBackColor = true;
|
|
this.buttonConvert.Click += new System.EventHandler(this.ButtonConvertClick);
|
|
//
|
|
// textBoxDestination
|
|
//
|
|
this.textBoxDestination.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.textBoxDestination.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.textBoxDestination.ForeColor = System.Drawing.Color.White;
|
|
this.textBoxDestination.Location = new System.Drawing.Point(59, 206);
|
|
this.textBoxDestination.Name = "textBoxDestination";
|
|
this.textBoxDestination.Size = new System.Drawing.Size(321, 22);
|
|
this.textBoxDestination.TabIndex = 9;
|
|
this.textBoxDestination.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
//
|
|
// buttonSearch2
|
|
//
|
|
this.buttonSearch2.FlatAppearance.BorderColor = System.Drawing.Color.DimGray;
|
|
this.buttonSearch2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.buttonSearch2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.buttonSearch2.ForeColor = System.Drawing.Color.White;
|
|
this.buttonSearch2.Location = new System.Drawing.Point(386, 206);
|
|
this.buttonSearch2.Name = "buttonSearch2";
|
|
this.buttonSearch2.Size = new System.Drawing.Size(68, 22);
|
|
this.buttonSearch2.TabIndex = 10;
|
|
this.buttonSearch2.Text = "Search";
|
|
this.buttonSearch2.UseVisualStyleBackColor = true;
|
|
this.buttonSearch2.Click += new System.EventHandler(this.Button1Click);
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label3.Location = new System.Drawing.Point(15, 5);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(469, 21);
|
|
this.label3.TabIndex = 11;
|
|
this.label3.Text = "ANX Project Converter";
|
|
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Label3MouseDown);
|
|
this.label3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Label3MouseMove);
|
|
this.label3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Label3MouseUp);
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.buttonClose.Location = new System.Drawing.Point(473, 3);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(20, 20);
|
|
this.buttonClose.TabIndex = 12;
|
|
this.buttonClose.Text = "X";
|
|
this.buttonClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
|
|
this.buttonClose.MouseEnter += new System.EventHandler(this.LabelMouseEnter);
|
|
this.buttonClose.MouseLeave += new System.EventHandler(this.LabelMouseLeave);
|
|
//
|
|
// buttonHelp
|
|
//
|
|
this.buttonHelp.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.buttonHelp.Location = new System.Drawing.Point(449, 3);
|
|
this.buttonHelp.Name = "buttonHelp";
|
|
this.buttonHelp.Size = new System.Drawing.Size(20, 20);
|
|
this.buttonHelp.TabIndex = 14;
|
|
this.buttonHelp.Text = "?";
|
|
this.buttonHelp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.buttonHelp.Click += new System.EventHandler(this.ButtonHelpClick);
|
|
this.buttonHelp.MouseEnter += new System.EventHandler(this.LabelMouseEnter);
|
|
this.buttonHelp.MouseLeave += new System.EventHandler(this.LabelMouseLeave);
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.Location = new System.Drawing.Point(61, 177);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(393, 27);
|
|
this.label4.TabIndex = 15;
|
|
this.label4.Text = "The converted file(s) will be placed in here:";
|
|
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// MainWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.ClientSize = new System.Drawing.Size(496, 287);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.buttonHelp);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.buttonSearch2);
|
|
this.Controls.Add(this.textBoxDestination);
|
|
this.Controls.Add(this.buttonConvert);
|
|
this.Controls.Add(this.comboBoxType);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.comboBoxTarget);
|
|
this.Controls.Add(this.buttonSearch);
|
|
this.Controls.Add(this.textBoxSource);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "MainWindow";
|
|
this.Text = "ANX Project Converter";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBoxSource;
|
|
private System.Windows.Forms.Button buttonSearch;
|
|
private System.Windows.Forms.ComboBox comboBoxTarget;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ComboBox comboBoxType;
|
|
private System.Windows.Forms.Button buttonConvert;
|
|
private System.Windows.Forms.TextBox textBoxDestination;
|
|
private System.Windows.Forms.Button buttonSearch2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label buttonHelp;
|
|
private System.Windows.Forms.Label buttonClose;
|
|
private System.Windows.Forms.Label label4;
|
|
}
|
|
} |