mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
127 lines
6.1 KiB
C#
127 lines
6.1 KiB
C#
namespace CodeWalker.Forms
|
|
{
|
|
partial class YcdForm
|
|
{
|
|
/// <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.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Clips", System.Windows.Forms.HorizontalAlignment.Left);
|
|
System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Animations", System.Windows.Forms.HorizontalAlignment.Left);
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(YcdForm));
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.MainListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.MainPropertyGrid = new CodeWalker.WinForms.ReadOnlyPropertyGrid();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.MainListView);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.MainPropertyGrid);
|
|
this.splitContainer1.Size = new System.Drawing.Size(763, 474);
|
|
this.splitContainer1.SplitterDistance = 254;
|
|
this.splitContainer1.TabIndex = 1;
|
|
//
|
|
// MainListView
|
|
//
|
|
this.MainListView.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.MainListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1});
|
|
this.MainListView.FullRowSelect = true;
|
|
listViewGroup1.Header = "Clips";
|
|
listViewGroup1.Name = "Clips";
|
|
listViewGroup2.Header = "Animations";
|
|
listViewGroup2.Name = "Anims";
|
|
this.MainListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
|
|
listViewGroup1,
|
|
listViewGroup2});
|
|
this.MainListView.HideSelection = false;
|
|
this.MainListView.Location = new System.Drawing.Point(3, 3);
|
|
this.MainListView.MultiSelect = false;
|
|
this.MainListView.Name = "MainListView";
|
|
this.MainListView.Size = new System.Drawing.Size(248, 468);
|
|
this.MainListView.TabIndex = 0;
|
|
this.MainListView.UseCompatibleStateImageBehavior = false;
|
|
this.MainListView.View = System.Windows.Forms.View.Details;
|
|
this.MainListView.SelectedIndexChanged += new System.EventHandler(this.MainListView_SelectedIndexChanged);
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "Name";
|
|
this.columnHeader1.Width = 221;
|
|
//
|
|
// MainPropertyGrid
|
|
//
|
|
this.MainPropertyGrid.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.MainPropertyGrid.HelpVisible = false;
|
|
this.MainPropertyGrid.Location = new System.Drawing.Point(3, 3);
|
|
this.MainPropertyGrid.Name = "MainPropertyGrid";
|
|
this.MainPropertyGrid.ReadOnly = false;
|
|
this.MainPropertyGrid.Size = new System.Drawing.Size(499, 468);
|
|
this.MainPropertyGrid.TabIndex = 0;
|
|
//
|
|
// YcdForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(763, 474);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "YcdForm";
|
|
this.Text = "Clip Dictionary Inspector - CodeWalker by dexyfex";
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.ListView MainListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private WinForms.ReadOnlyPropertyGrid MainPropertyGrid;
|
|
}
|
|
} |