111 lines
4.8 KiB
C#
111 lines
4.8 KiB
C#
namespace NovetusLauncher
|
|
{
|
|
partial class AssetLocalizer
|
|
{
|
|
/// <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(AssetLocalizer));
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
this.SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(12, 39);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(240, 21);
|
|
this.button1.TabIndex = 0;
|
|
this.button1.Text = "Browse and Localize Asset";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Items.AddRange(new object[] {
|
|
"RBXL",
|
|
"RBXM",
|
|
"Hat",
|
|
"Head",
|
|
"Face",
|
|
"Shirt",
|
|
"T-Shirt",
|
|
"Pants"});
|
|
this.comboBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(240, 21);
|
|
this.comboBox1.TabIndex = 1;
|
|
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Location = new System.Drawing.Point(12, 67);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(240, 13);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Idle";
|
|
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// backgroundWorker1
|
|
//
|
|
this.backgroundWorker1.WorkerReportsProgress = true;
|
|
this.backgroundWorker1.WorkerSupportsCancellation = true;
|
|
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|
this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
|
|
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|
//
|
|
// AssetLocalizer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.ClientSize = new System.Drawing.Size(264, 89);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.comboBox1);
|
|
this.Controls.Add(this.button1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "AssetLocalizer";
|
|
this.Text = "Novetus Asset Localizer";
|
|
this.Load += new System.EventHandler(this.AssetLocalizer_Load);
|
|
this.Closing += new System.ComponentModel.CancelEventHandler(this.AssetLocalizer_Close);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
}
|
|
} |