mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-30 16:29:14 +00:00
82 lines
3.6 KiB
C#
82 lines
3.6 KiB
C#
|
namespace FirstPlugin.Forms
|
|||
|
{
|
|||
|
partial class BoneVisualAnimEditor
|
|||
|
{
|
|||
|
/// <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 Component 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.dataGridView1 = new Switch_Toolbox.Library.Forms.STDataGridView();
|
|||
|
this.btnAdd = new Switch_Toolbox.Library.Forms.STButton();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView1
|
|||
|
//
|
|||
|
this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|||
|
| System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.dataGridView1.BackgroundColor = System.Drawing.Color.Gray;
|
|||
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView1.EnableHeadersVisualStyles = false;
|
|||
|
this.dataGridView1.GridColor = System.Drawing.Color.Black;
|
|||
|
this.dataGridView1.Location = new System.Drawing.Point(3, 29);
|
|||
|
this.dataGridView1.Name = "dataGridView1";
|
|||
|
this.dataGridView1.Size = new System.Drawing.Size(403, 611);
|
|||
|
this.dataGridView1.TabIndex = 3;
|
|||
|
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
|
|||
|
this.dataGridView1.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellValueChanged);
|
|||
|
//
|
|||
|
// btnAdd
|
|||
|
//
|
|||
|
this.btnAdd.Dock = System.Windows.Forms.DockStyle.Top;
|
|||
|
this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|||
|
this.btnAdd.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.btnAdd.Name = "btnAdd";
|
|||
|
this.btnAdd.Size = new System.Drawing.Size(409, 23);
|
|||
|
this.btnAdd.TabIndex = 1;
|
|||
|
this.btnAdd.Text = "Edit";
|
|||
|
this.btnAdd.UseVisualStyleBackColor = false;
|
|||
|
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
|
|||
|
//
|
|||
|
// BoneVisualAnimEditor
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.dataGridView1);
|
|||
|
this.Controls.Add(this.btnAdd);
|
|||
|
this.Name = "BoneVisualAnimEditor";
|
|||
|
this.Size = new System.Drawing.Size(409, 640);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
private Switch_Toolbox.Library.Forms.STDataGridView dataGridView1;
|
|||
|
private Switch_Toolbox.Library.Forms.STButton btnAdd;
|
|||
|
}
|
|||
|
}
|