mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-23 13:03:15 +00:00
110 lines
No EOL
4.5 KiB
C#
110 lines
No EOL
4.5 KiB
C#
namespace FirstPlugin.Forms
|
|
{
|
|
partial class VisObjectAddDialog
|
|
{
|
|
/// <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.stTextBox1 = new Toolbox.Library.Forms.STTextBox();
|
|
this.stLabel1 = new Toolbox.Library.Forms.STLabel();
|
|
this.stButton1 = new Toolbox.Library.Forms.STButton();
|
|
this.btnOk = new Toolbox.Library.Forms.STButton();
|
|
this.contentContainer.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// contentContainer
|
|
//
|
|
this.contentContainer.Controls.Add(this.btnOk);
|
|
this.contentContainer.Controls.Add(this.stButton1);
|
|
this.contentContainer.Controls.Add(this.stLabel1);
|
|
this.contentContainer.Controls.Add(this.stTextBox1);
|
|
this.contentContainer.Size = new System.Drawing.Size(269, 110);
|
|
this.contentContainer.Controls.SetChildIndex(this.stTextBox1, 0);
|
|
this.contentContainer.Controls.SetChildIndex(this.stLabel1, 0);
|
|
this.contentContainer.Controls.SetChildIndex(this.stButton1, 0);
|
|
this.contentContainer.Controls.SetChildIndex(this.btnOk, 0);
|
|
//
|
|
// stTextBox1
|
|
//
|
|
this.stTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.stTextBox1.Location = new System.Drawing.Point(81, 38);
|
|
this.stTextBox1.Name = "stTextBox1";
|
|
this.stTextBox1.Size = new System.Drawing.Size(179, 20);
|
|
this.stTextBox1.TabIndex = 0;
|
|
this.stTextBox1.TextChanged += new System.EventHandler(this.stTextBox1_TextChanged);
|
|
//
|
|
// stLabel1
|
|
//
|
|
this.stLabel1.AutoSize = true;
|
|
this.stLabel1.Location = new System.Drawing.Point(9, 40);
|
|
this.stLabel1.Name = "stLabel1";
|
|
this.stLabel1.Size = new System.Drawing.Size(66, 13);
|
|
this.stLabel1.TabIndex = 1;
|
|
this.stLabel1.Text = "Bone Name:";
|
|
//
|
|
// stButton1
|
|
//
|
|
this.stButton1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.stButton1.Location = new System.Drawing.Point(185, 77);
|
|
this.stButton1.Name = "stButton1";
|
|
this.stButton1.Size = new System.Drawing.Size(75, 23);
|
|
this.stButton1.TabIndex = 11;
|
|
this.stButton1.Text = "Cancel";
|
|
this.stButton1.UseVisualStyleBackColor = false;
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnOk.Location = new System.Drawing.Point(104, 77);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOk.TabIndex = 12;
|
|
this.btnOk.Text = "Ok";
|
|
this.btnOk.UseVisualStyleBackColor = false;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// VisObjectAddDialog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(275, 114);
|
|
this.Name = "VisObjectAddDialog";
|
|
this.Text = "Add Bone";
|
|
this.contentContainer.ResumeLayout(false);
|
|
this.contentContainer.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Toolbox.Library.Forms.STTextBox stTextBox1;
|
|
private Toolbox.Library.Forms.STLabel stLabel1;
|
|
private Toolbox.Library.Forms.STButton btnOk;
|
|
private Toolbox.Library.Forms.STButton stButton1;
|
|
}
|
|
} |