private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.btnOkay             = new System.Windows.Forms.Button();
     this.panel1              = new System.Windows.Forms.Panel();
     this.panel2              = new System.Windows.Forms.Panel();
     this.panel3              = new System.Windows.Forms.Panel();
     this.dataListBox         = new System.Windows.Forms.ListBox();
     this.ctxData             = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.dataReplace         = new System.Windows.Forms.ToolStripMenuItem();
     this.dataExport          = new System.Windows.Forms.ToolStripMenuItem();
     this.dataNew             = new System.Windows.Forms.ToolStripMenuItem();
     this.dataNewNullEntry    = new System.Windows.Forms.ToolStripMenuItem();
     this.dataNewInstParam    = new System.Windows.Forms.ToolStripMenuItem();
     this.dataNewRange        = new System.Windows.Forms.ToolStripMenuItem();
     this.dataNewIndex        = new System.Windows.Forms.ToolStripMenuItem();
     this.dataDelete          = new System.Windows.Forms.ToolStripMenuItem();
     this.label1              = new System.Windows.Forms.Label();
     this.splitter2           = new System.Windows.Forms.Splitter();
     this.panel4              = new System.Windows.Forms.Panel();
     this.soundsListBox       = new System.Windows.Forms.ListBox();
     this.ctxSounds           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.sndReplace          = new System.Windows.Forms.ToolStripMenuItem();
     this.sndExport           = new System.Windows.Forms.ToolStripMenuItem();
     this.sndNew              = new System.Windows.Forms.ToolStripMenuItem();
     this.sndDelete           = new System.Windows.Forms.ToolStripMenuItem();
     this.label2              = new System.Windows.Forms.Label();
     this.splitter1           = new System.Windows.Forms.Splitter();
     this.propertyGrid        = new System.Windows.Forms.PropertyGrid();
     this.audioPlaybackPanel1 = new System.Windows.Forms.AudioPlaybackPanel();
     this.button1             = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.ctxData.SuspendLayout();
     this.panel4.SuspendLayout();
     this.ctxSounds.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOkay
     //
     this.btnOkay.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOkay.Location = new System.Drawing.Point(369, 3);
     this.btnOkay.Name     = "btnOkay";
     this.btnOkay.Size     = new System.Drawing.Size(75, 23);
     this.btnOkay.TabIndex = 1;
     this.btnOkay.Text     = "&Done";
     this.btnOkay.UseVisualStyleBackColor = true;
     this.btnOkay.Click += new System.EventHandler(this.btnOkay_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnOkay);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 320);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(447, 31);
     this.panel1.TabIndex = 3;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Controls.Add(this.splitter2);
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock        = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location    = new System.Drawing.Point(0, 0);
     this.panel2.MinimumSize = new System.Drawing.Size(54, 0);
     this.panel2.Name        = "panel2";
     this.panel2.Size        = new System.Drawing.Size(107, 320);
     this.panel2.TabIndex    = 4;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.dataListBox);
     this.panel3.Controls.Add(this.label1);
     this.panel3.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location    = new System.Drawing.Point(0, 0);
     this.panel3.Margin      = new System.Windows.Forms.Padding(0);
     this.panel3.MinimumSize = new System.Drawing.Size(0, 15);
     this.panel3.Name        = "panel3";
     this.panel3.Size        = new System.Drawing.Size(107, 160);
     this.panel3.TabIndex    = 1;
     //
     // dataListBox
     //
     this.dataListBox.ContextMenuStrip      = this.ctxData;
     this.dataListBox.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.dataListBox.FormattingEnabled     = true;
     this.dataListBox.IntegralHeight        = false;
     this.dataListBox.ItemHeight            = 16;
     this.dataListBox.Location              = new System.Drawing.Point(0, 21);
     this.dataListBox.Name                  = "dataListBox";
     this.dataListBox.Size                  = new System.Drawing.Size(107, 139);
     this.dataListBox.TabIndex              = 3;
     this.dataListBox.SelectedIndexChanged += new System.EventHandler(this.dataListBox_SelectedIndexChanged);
     //
     // ctxData
     //
     this.ctxData.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.ctxData.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.dataReplace,
         this.dataExport,
         this.dataNew,
         this.dataDelete
     });
     this.ctxData.Name = "contextMenuStrip1";
     this.ctxData.Size = new System.Drawing.Size(182, 136);
     //
     // dataReplace
     //
     this.dataReplace.Name   = "dataReplace";
     this.dataReplace.Size   = new System.Drawing.Size(181, 26);
     this.dataReplace.Text   = "Replace";
     this.dataReplace.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
     //
     // dataExport
     //
     this.dataExport.Name   = "dataExport";
     this.dataExport.Size   = new System.Drawing.Size(181, 26);
     this.dataExport.Text   = "Export";
     this.dataExport.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
     //
     // dataNew
     //
     this.dataNew.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.dataNewNullEntry,
         this.dataNewInstParam,
         this.dataNewRange,
         this.dataNewIndex
     });
     this.dataNew.Name   = "dataNew";
     this.dataNew.Size   = new System.Drawing.Size(181, 26);
     this.dataNew.Text   = "New";
     this.dataNew.Click += new System.EventHandler(this.dataNew_Click);
     //
     // dataNewNullEntry
     //
     this.dataNewNullEntry.Name   = "dataNewNullEntry";
     this.dataNewNullEntry.Size   = new System.Drawing.Size(215, 26);
     this.dataNewNullEntry.Text   = "Null Entry";
     this.dataNewNullEntry.Click += new System.EventHandler(this.nullEntryToolStripMenuItem1_Click);
     //
     // dataNewInstParam
     //
     this.dataNewInstParam.Name   = "dataNewInstParam";
     this.dataNewInstParam.Size   = new System.Drawing.Size(215, 26);
     this.dataNewInstParam.Text   = "Instance Parameters";
     this.dataNewInstParam.Click += new System.EventHandler(this.instanceParametersToolStripMenuItem_Click);
     //
     // dataNewRange
     //
     this.dataNewRange.Name   = "dataNewRange";
     this.dataNewRange.Size   = new System.Drawing.Size(215, 26);
     this.dataNewRange.Text   = "Range Group";
     this.dataNewRange.Click += new System.EventHandler(this.rangeGroupToolStripMenuItem1_Click);
     //
     // dataNewIndex
     //
     this.dataNewIndex.Name   = "dataNewIndex";
     this.dataNewIndex.Size   = new System.Drawing.Size(215, 26);
     this.dataNewIndex.Text   = "Index Group";
     this.dataNewIndex.Click += new System.EventHandler(this.indexGroupToolStripMenuItem1_Click);
     //
     // dataDelete
     //
     this.dataDelete.Name   = "dataDelete";
     this.dataDelete.Size   = new System.Drawing.Size(181, 26);
     this.dataDelete.Text   = "Delete";
     this.dataDelete.Click += new System.EventHandler(this.dataDelete_Click);
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Dock        = System.Windows.Forms.DockStyle.Top;
     this.label1.Location    = new System.Drawing.Point(0, 0);
     this.label1.Margin      = new System.Windows.Forms.Padding(0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(107, 21);
     this.label1.TabIndex    = 2;
     this.label1.Text        = "Data";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     //
     // splitter2
     //
     this.splitter2.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.splitter2.Location       = new System.Drawing.Point(0, 160);
     this.splitter2.Name           = "splitter2";
     this.splitter2.Size           = new System.Drawing.Size(107, 3);
     this.splitter2.TabIndex       = 0;
     this.splitter2.TabStop        = false;
     this.splitter2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter2_SplitterMoved);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.soundsListBox);
     this.panel4.Controls.Add(this.label2);
     this.panel4.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.panel4.Location    = new System.Drawing.Point(0, 163);
     this.panel4.Margin      = new System.Windows.Forms.Padding(0);
     this.panel4.MinimumSize = new System.Drawing.Size(0, 15);
     this.panel4.Name        = "panel4";
     this.panel4.Size        = new System.Drawing.Size(107, 157);
     this.panel4.TabIndex    = 2;
     //
     // soundsListBox
     //
     this.soundsListBox.ContextMenuStrip      = this.ctxSounds;
     this.soundsListBox.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.soundsListBox.FormattingEnabled     = true;
     this.soundsListBox.IntegralHeight        = false;
     this.soundsListBox.ItemHeight            = 16;
     this.soundsListBox.Location              = new System.Drawing.Point(0, 21);
     this.soundsListBox.Name                  = "soundsListBox";
     this.soundsListBox.Size                  = new System.Drawing.Size(107, 136);
     this.soundsListBox.TabIndex              = 2;
     this.soundsListBox.SelectedIndexChanged += new System.EventHandler(this.soundsListBox_SelectedIndexChanged);
     //
     // ctxSounds
     //
     this.ctxSounds.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.ctxSounds.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sndReplace,
         this.sndExport,
         this.sndNew,
         this.sndDelete
     });
     this.ctxSounds.Name = "contextMenuStrip1";
     this.ctxSounds.Size = new System.Drawing.Size(138, 108);
     //
     // sndReplace
     //
     this.sndReplace.Name   = "sndReplace";
     this.sndReplace.Size   = new System.Drawing.Size(137, 26);
     this.sndReplace.Text   = "Replace";
     this.sndReplace.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // sndExport
     //
     this.sndExport.Name   = "sndExport";
     this.sndExport.Size   = new System.Drawing.Size(137, 26);
     this.sndExport.Text   = "Export";
     this.sndExport.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
     //
     // sndNew
     //
     this.sndNew.Name   = "sndNew";
     this.sndNew.Size   = new System.Drawing.Size(137, 26);
     this.sndNew.Text   = "New";
     this.sndNew.Click += new System.EventHandler(this.sndNew_Click);
     //
     // sndDelete
     //
     this.sndDelete.Name   = "sndDelete";
     this.sndDelete.Size   = new System.Drawing.Size(137, 26);
     this.sndDelete.Text   = "Delete";
     this.sndDelete.Click += new System.EventHandler(this.sndDelete_Click);
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Dock        = System.Windows.Forms.DockStyle.Top;
     this.label2.Location    = new System.Drawing.Point(0, 0);
     this.label2.Margin      = new System.Windows.Forms.Padding(0);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(107, 21);
     this.label2.TabIndex    = 1;
     this.label2.Text        = "Sounds";
     this.label2.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(107, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 320);
     this.splitter1.TabIndex = 0;
     this.splitter1.TabStop  = false;
     //
     // propertyGrid
     //
     this.propertyGrid.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid.HelpVisible = false;
     this.propertyGrid.Location    = new System.Drawing.Point(110, 24);
     this.propertyGrid.Name        = "propertyGrid";
     this.propertyGrid.Size        = new System.Drawing.Size(337, 185);
     this.propertyGrid.TabIndex    = 5;
     //
     // audioPlaybackPanel1
     //
     this.audioPlaybackPanel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.audioPlaybackPanel1.Location      = new System.Drawing.Point(110, 209);
     this.audioPlaybackPanel1.Name          = "audioPlaybackPanel1";
     this.audioPlaybackPanel1.Size          = new System.Drawing.Size(337, 111);
     this.audioPlaybackPanel1.TabIndex      = 6;
     this.audioPlaybackPanel1.TargetStreams = null;
     this.audioPlaybackPanel1.Volume        = 0;
     //
     // button1
     //
     this.button1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.button1.Location = new System.Drawing.Point(110, 0);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(337, 24);
     this.button1.TabIndex = 8;
     this.button1.Text     = "View Entries";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // EditRSARFileDialog
     //
     this.AcceptButton = this.btnOkay;
     this.ClientSize   = new System.Drawing.Size(447, 351);
     this.Controls.Add(this.propertyGrid);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.audioPlaybackPanel1);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name          = "EditRSARFileDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Edit RSAR File";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ctxData.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.ctxSounds.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #2
0
 private void InitializeComponent()
 {
     components                         = new Container();
     clmIndex                           = new ColumnHeader();
     clmName                            = new ColumnHeader();
     lstSets                            = new ListView();
     clmType                            = new ColumnHeader();
     clmDataOffset                      = new ColumnHeader();
     clmAudioOffset                     = new ColumnHeader();
     clmEntryOffset                     = new ColumnHeader();
     contextMenuStrip1                  = new ContextMenuStrip(components);
     mnuPath                            = new ToolStripMenuItem();
     mnuExport                          = new ToolStripMenuItem();
     mnuReplace                         = new ToolStripMenuItem();
     _deleteToolStripMenuItem           = new ToolStripMenuItem();
     menuStrip1                         = new MenuStrip();
     newFileToolStripMenuItem           = new ToolStripMenuItem();
     rWSDToolStripMenuItem              = new ToolStripMenuItem();
     rSEQToolStripMenuItem              = new ToolStripMenuItem();
     rBNKToolStripMenuItem              = new ToolStripMenuItem();
     rSTMToolStripMenuItem              = new ToolStripMenuItem();
     externalReferenceToolStripMenuItem = new ToolStripMenuItem();
     audioPlaybackPanel1                = new AudioPlaybackPanel();
     editToolStripMenuItem              = new ToolStripMenuItem();
     makeAllExternalToolStripMenuItem   = new ToolStripMenuItem();
     makeAllInternalToolStripMenuItem   = new ToolStripMenuItem();
     contextMenuStrip1.SuspendLayout();
     menuStrip1.SuspendLayout();
     SuspendLayout();
     //
     // clmIndex
     //
     clmIndex.Text  = "Index";
     clmIndex.Width = 40;
     //
     // clmName
     //
     clmName.Text  = "Name";
     clmName.Width = 40;
     //
     // lstSets
     //
     lstSets.AutoArrange = false;
     lstSets.BorderStyle = BorderStyle.None;
     lstSets.Columns.AddRange(new ColumnHeader[]
     {
         clmIndex,
         clmType,
         clmName,
         clmDataOffset,
         clmAudioOffset,
         clmEntryOffset
     });
     lstSets.ContextMenuStrip = contextMenuStrip1;
     lstSets.Dock             = DockStyle.Fill;
     lstSets.FullRowSelect    = true;
     lstSets.GridLines        = true;
     lstSets.HideSelection    = false;
     lstSets.LabelWrap        = false;
     lstSets.Location         = new Drawing.Point(0, 28);
     lstSets.MultiSelect      = false;
     lstSets.Name             = "lstSets";
     lstSets.Size             = new Drawing.Size(389, 105);
     lstSets.TabIndex         = 0;
     lstSets.UseCompatibleStateImageBehavior = false;
     lstSets.View                  = View.Details;
     lstSets.ColumnClick          += new ColumnClickEventHandler(lstSets_ColumnClick);
     lstSets.SelectedIndexChanged += lstSets_SelectedIndexChanged;
     lstSets.DoubleClick          += lstSets_DoubleClick;
     lstSets.KeyDown              += new KeyEventHandler(lstSets_KeyDown);
     //
     // clmType
     //
     clmType.Text = "Type";
     //
     // clmDataOffset
     //
     clmDataOffset.Text  = "Data Offset";
     clmDataOffset.Width = 70;
     //
     // clmAudioOffset
     //
     clmAudioOffset.Text  = "Audio Offset";
     clmAudioOffset.Width = 70;
     //
     // clmEntryOffset
     //
     clmEntryOffset.Text  = "Entry Offset";
     clmEntryOffset.Width = 80;
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.ImageScalingSize = new Drawing.Size(20, 20);
     contextMenuStrip1.Items.AddRange(new ToolStripItem[]
     {
         mnuPath,
         mnuExport,
         mnuReplace,
         _deleteToolStripMenuItem
     });
     contextMenuStrip1.Name     = "contextMenuStrip1";
     contextMenuStrip1.Size     = new Drawing.Size(138, 108);
     contextMenuStrip1.Opening += new CancelEventHandler(contextMenuStrip1_Opening);
     //
     // mnuPath
     //
     mnuPath.Name   = "mnuPath";
     mnuPath.Size   = new Drawing.Size(137, 26);
     mnuPath.Text   = "Path...";
     mnuPath.Click += mnuPath_Click;
     //
     // mnuExport
     //
     mnuExport.Name   = "mnuExport";
     mnuExport.Size   = new Drawing.Size(137, 26);
     mnuExport.Text   = "Export";
     mnuExport.Click += mnuExport_Click;
     //
     // mnuReplace
     //
     mnuReplace.Name   = "mnuReplace";
     mnuReplace.Size   = new Drawing.Size(137, 26);
     mnuReplace.Text   = "Replace";
     mnuReplace.Click += mnuReplace_Click;
     //
     // _deleteToolStripMenuItem
     //
     _deleteToolStripMenuItem.Name   = "_deleteToolStripMenuItem";
     _deleteToolStripMenuItem.Size   = new Drawing.Size(137, 26);
     _deleteToolStripMenuItem.Text   = "Delete";
     _deleteToolStripMenuItem.Click += _deleteToolStripMenuItem_Click;
     //
     // menuStrip1
     //
     menuStrip1.ImageScalingSize = new Drawing.Size(20, 20);
     menuStrip1.Items.AddRange(new ToolStripItem[]
     {
         newFileToolStripMenuItem,
         editToolStripMenuItem
     });
     menuStrip1.Location = new Drawing.Point(0, 0);
     menuStrip1.Name     = "menuStrip1";
     menuStrip1.Size     = new Drawing.Size(389, 28);
     menuStrip1.TabIndex = 1;
     menuStrip1.Text     = "menuStrip1";
     //
     // newFileToolStripMenuItem
     //
     newFileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[]
     {
         rWSDToolStripMenuItem,
         rSEQToolStripMenuItem,
         rBNKToolStripMenuItem,
         rSTMToolStripMenuItem,
         externalReferenceToolStripMenuItem
     });
     newFileToolStripMenuItem.Name = "newFileToolStripMenuItem";
     newFileToolStripMenuItem.Size = new Drawing.Size(78, 24);
     newFileToolStripMenuItem.Text = "New File";
     //
     // rWSDToolStripMenuItem
     //
     rWSDToolStripMenuItem.Name   = "rWSDToolStripMenuItem";
     rWSDToolStripMenuItem.Size   = new Drawing.Size(207, 26);
     rWSDToolStripMenuItem.Text   = "RWSD";
     rWSDToolStripMenuItem.Click += rWSDToolStripMenuItem_Click;
     //
     // rSEQToolStripMenuItem
     //
     rSEQToolStripMenuItem.Name   = "rSEQToolStripMenuItem";
     rSEQToolStripMenuItem.Size   = new Drawing.Size(207, 26);
     rSEQToolStripMenuItem.Text   = "RSEQ";
     rSEQToolStripMenuItem.Click += rSEQToolStripMenuItem_Click;
     //
     // rBNKToolStripMenuItem
     //
     rBNKToolStripMenuItem.Name   = "rBNKToolStripMenuItem";
     rBNKToolStripMenuItem.Size   = new Drawing.Size(207, 26);
     rBNKToolStripMenuItem.Text   = "RBNK";
     rBNKToolStripMenuItem.Click += rBNKToolStripMenuItem_Click;
     //
     // rSTMToolStripMenuItem
     //
     rSTMToolStripMenuItem.Name   = "rSTMToolStripMenuItem";
     rSTMToolStripMenuItem.Size   = new Drawing.Size(207, 26);
     rSTMToolStripMenuItem.Text   = "RSTM";
     rSTMToolStripMenuItem.Click += rSTMToolStripMenuItem_Click;
     //
     // externalReferenceToolStripMenuItem
     //
     externalReferenceToolStripMenuItem.Name   = "externalReferenceToolStripMenuItem";
     externalReferenceToolStripMenuItem.Size   = new Drawing.Size(207, 26);
     externalReferenceToolStripMenuItem.Text   = "External Reference";
     externalReferenceToolStripMenuItem.Click += externalReferenceToolStripMenuItem_Click;
     //
     // audioPlaybackPanel1
     //
     audioPlaybackPanel1.Dock          = DockStyle.Bottom;
     audioPlaybackPanel1.Location      = new Drawing.Point(0, 133);
     audioPlaybackPanel1.Name          = "audioPlaybackPanel1";
     audioPlaybackPanel1.Size          = new Drawing.Size(389, 120);
     audioPlaybackPanel1.TabIndex      = 2;
     audioPlaybackPanel1.TargetStreams = null;
     audioPlaybackPanel1.Visible       = false;
     audioPlaybackPanel1.Volume        = 0;
     //
     // editToolStripMenuItem
     //
     editToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[]
     {
         makeAllExternalToolStripMenuItem,
         makeAllInternalToolStripMenuItem
     });
     editToolStripMenuItem.Name = "editToolStripMenuItem";
     editToolStripMenuItem.Size = new Drawing.Size(47, 24);
     editToolStripMenuItem.Text = "Edit";
     //
     // makeAllExternalToolStripMenuItem
     //
     makeAllExternalToolStripMenuItem.Name   = "makeAllExternalToolStripMenuItem";
     makeAllExternalToolStripMenuItem.Size   = new Drawing.Size(197, 26);
     makeAllExternalToolStripMenuItem.Text   = "Make all external";
     makeAllExternalToolStripMenuItem.Click += makeAllExternalToolStripMenuItem_Click;
     //
     // makeAllInternalToolStripMenuItem
     //
     makeAllInternalToolStripMenuItem.Name   = "makeAllInternalToolStripMenuItem";
     makeAllInternalToolStripMenuItem.Size   = new Drawing.Size(197, 26);
     makeAllInternalToolStripMenuItem.Text   = "Make all internal";
     makeAllInternalToolStripMenuItem.Click += makeAllInternalToolStripMenuItem_Click;
     //
     // SoundPackControl
     //
     Controls.Add(lstSets);
     Controls.Add(audioPlaybackPanel1);
     Controls.Add(menuStrip1);
     Name         = "SoundPackControl";
     Size         = new Drawing.Size(389, 253);
     DoubleClick += lstSets_DoubleClick;
     contextMenuStrip1.ResumeLayout(false);
     menuStrip1.ResumeLayout(false);
     menuStrip1.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.resourceTree = new BrawlBox.ResourceTree();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aRCArchiveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.brresPackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bRStmAudioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.u8FileArchiveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.recentFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gCTEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.donateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
     this.videoPlaybackPanel1 = new System.Windows.Forms.VideoPlaybackPanel();
     this.modelPanel1 = new System.Windows.Forms.ModelPanel();
     this.previewPanel2 = new System.Windows.Forms.PreviewPanel();
     this.scN0FogEditControl1 = new System.Windows.Forms.SCN0FogEditControl();
     this.scN0LightEditControl1 = new System.Windows.Forms.SCN0LightEditControl();
     this.scN0CameraEditControl1 = new System.Windows.Forms.SCN0CameraEditControl();
     this.animEditControl = new System.Windows.Forms.AnimEditControl();
     this.shpAnimEditControl = new System.Windows.Forms.ShpAnimEditControl();
     this.texAnimEditControl = new System.Windows.Forms.TexAnimEditControl();
     this.audioPlaybackPanel1 = new System.Windows.Forms.AudioPlaybackPanel();
     this.visEditor = new System.Windows.Forms.VisEditor();
     this.clrControl = new System.Windows.Forms.CLRControl();
     this.soundPackControl1 = new System.Windows.Forms.SoundPackControl();
     this.msBinEditor1 = new System.Windows.Forms.MSBinEditor();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.resourceTree);
     this.splitContainer1.Panel1.Controls.Add(this.menuStrip1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size = new System.Drawing.Size(617, 411);
     this.splitContainer1.SplitterDistance = 214;
     this.splitContainer1.TabIndex = 1;
     //
     // resourceTree
     //
     this.resourceTree.AllowDrop = true;
     this.resourceTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.resourceTree.HideSelection = false;
     this.resourceTree.ImageIndex = 0;
     this.resourceTree.Indent = 20;
     this.resourceTree.Location = new System.Drawing.Point(0, 24);
     this.resourceTree.Name = "resourceTree";
     this.resourceTree.SelectedImageIndex = 0;
     this.resourceTree.ShowIcons = true;
     this.resourceTree.Size = new System.Drawing.Size(214, 387);
     this.resourceTree.TabIndex = 0;
     this.resourceTree.SelectionChanged += new System.EventHandler(this.resourceTree_SelectionChanged);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(214, 24);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.closeToolStripMenuItem,
     this.toolStripMenuItem1,
     this.recentFilesToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aRCArchiveToolStripMenuItem,
     this.brresPackToolStripMenuItem,
     this.bRStmAudioToolStripMenuItem,
     this.u8FileArchiveToolStripMenuItem});
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.newToolStripMenuItem.Text = "&New";
     //
     // aRCArchiveToolStripMenuItem
     //
     this.aRCArchiveToolStripMenuItem.Name = "aRCArchiveToolStripMenuItem";
     this.aRCArchiveToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.aRCArchiveToolStripMenuItem.Text = "ARC File Archive";
     this.aRCArchiveToolStripMenuItem.Click += new System.EventHandler(this.aRCArchiveToolStripMenuItem_Click);
     //
     // brresPackToolStripMenuItem
     //
     this.brresPackToolStripMenuItem.Name = "brresPackToolStripMenuItem";
     this.brresPackToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.brresPackToolStripMenuItem.Text = "Brres Resource Pack";
     this.brresPackToolStripMenuItem.Click += new System.EventHandler(this.brresPackToolStripMenuItem_Click);
     //
     // bRStmAudioToolStripMenuItem
     //
     this.bRStmAudioToolStripMenuItem.Name = "bRStmAudioToolStripMenuItem";
     this.bRStmAudioToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.bRStmAudioToolStripMenuItem.Text = "Brstm Audio Stream";
     this.bRStmAudioToolStripMenuItem.Click += new System.EventHandler(this.bRStmAudioToolStripMenuItem_Click);
     //
     // u8FileArchiveToolStripMenuItem
     //
     this.u8FileArchiveToolStripMenuItem.Name = "u8FileArchiveToolStripMenuItem";
     this.u8FileArchiveToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.u8FileArchiveToolStripMenuItem.Text = "U8 File Archive";
     this.u8FileArchiveToolStripMenuItem.Click += new System.EventHandler(this.u8FileArchiveToolStripMenuItem_Click);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.openToolStripMenuItem.Text = "&Open...";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Enabled = false;
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.saveToolStripMenuItem.Text = "&Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Enabled = false;
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.saveAsToolStripMenuItem.Text = "Save &As...";
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Enabled = false;
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     this.closeToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.closeToolStripMenuItem.Text = "&Close";
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(162, 6);
     //
     // recentFilesToolStripMenuItem
     //
     this.recentFilesToolStripMenuItem.Name = "recentFilesToolStripMenuItem";
     this.recentFilesToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.recentFilesToolStripMenuItem.Text = "Recent Files";
     this.recentFilesToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentFilesToolStripMenuItem_DropDownItemClicked);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(162, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Enabled = false;
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "&Edit";
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.settingsToolStripMenuItem,
     this.gCTEditorToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.settingsToolStripMenuItem.Text = "&Settings";
     this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click_1);
     //
     // gCTEditorToolStripMenuItem
     //
     this.gCTEditorToolStripMenuItem.Name = "gCTEditorToolStripMenuItem";
     this.gCTEditorToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.gCTEditorToolStripMenuItem.Text = "Code Manager";
     this.gCTEditorToolStripMenuItem.Click += new System.EventHandler(this.gCTEditorToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem,
     this.donateToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(112, 22);
     this.aboutToolStripMenuItem.Text = "&About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // donateToolStripMenuItem
     //
     this.donateToolStripMenuItem.Name = "donateToolStripMenuItem";
     this.donateToolStripMenuItem.Size = new System.Drawing.Size(112, 22);
     this.donateToolStripMenuItem.Text = "Donate";
     this.donateToolStripMenuItem.Click += new System.EventHandler(this.donateToolStripMenuItem_Click);
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.propertyGrid1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.videoPlaybackPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.modelPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.previewPanel2);
     this.splitContainer2.Panel2.Controls.Add(this.scN0FogEditControl1);
     this.splitContainer2.Panel2.Controls.Add(this.scN0LightEditControl1);
     this.splitContainer2.Panel2.Controls.Add(this.scN0CameraEditControl1);
     this.splitContainer2.Panel2.Controls.Add(this.animEditControl);
     this.splitContainer2.Panel2.Controls.Add(this.shpAnimEditControl);
     this.splitContainer2.Panel2.Controls.Add(this.texAnimEditControl);
     this.splitContainer2.Panel2.Controls.Add(this.audioPlaybackPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.visEditor);
     this.splitContainer2.Panel2.Controls.Add(this.clrControl);
     this.splitContainer2.Panel2.Controls.Add(this.soundPackControl1);
     this.splitContainer2.Panel2.Controls.Add(this.msBinEditor1);
     this.splitContainer2.Size = new System.Drawing.Size(399, 411);
     this.splitContainer2.SplitterDistance = 205;
     this.splitContainer2.TabIndex = 3;
     //
     // propertyGrid1
     //
     this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid1.HelpVisible = false;
     this.propertyGrid1.Location = new System.Drawing.Point(0, 0);
     this.propertyGrid1.Name = "propertyGrid1";
     this.propertyGrid1.PropertySort = System.Windows.Forms.PropertySort.Categorized;
     this.propertyGrid1.Size = new System.Drawing.Size(399, 205);
     this.propertyGrid1.TabIndex = 2;
     this.propertyGrid1.SelectedGridItemChanged += new System.Windows.Forms.SelectedGridItemChangedEventHandler(this.propertyGrid1_SelectedGridItemChanged);
     //
     // videoPlaybackPanel1
     //
     this.videoPlaybackPanel1.Location = new System.Drawing.Point(85, -16);
     this.videoPlaybackPanel1.Name = "videoPlaybackPanel1";
     this.videoPlaybackPanel1.Size = new System.Drawing.Size(536, 111);
     this.videoPlaybackPanel1.TabIndex = 17;
     this.videoPlaybackPanel1.Visible = false;
     //
     // modelPanel1
     //
     this.modelPanel1.DefaultTranslate = ((System.Vector3)(resources.GetObject("modelPanel1.DefaultTranslate")));
     this.modelPanel1.InitialYFactor = 100;
     this.modelPanel1.InitialZoomFactor = 5;
     this.modelPanel1.Location = new System.Drawing.Point(0, 0);
     this.modelPanel1.Name = "modelPanel1";
     this.modelPanel1.RotationScale = 0.4F;
     this.modelPanel1.Size = new System.Drawing.Size(381, 169);
     this.modelPanel1.TabIndex = 15;
     this.modelPanel1.TranslationScale = 0.05F;
     this.modelPanel1.Visible = false;
     this.modelPanel1.ZoomScale = 2.5F;
     //
     // previewPanel2
     //
     this.previewPanel2.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.previewPanel2.CurrentIndex = 0;
     this.previewPanel2.DisposeImage = true;
     this.previewPanel2.Location = new System.Drawing.Point(0, 0);
     this.previewPanel2.Name = "previewPanel2";
     this.previewPanel2.RenderingTarget = null;
     this.previewPanel2.Size = new System.Drawing.Size(368, 134);
     this.previewPanel2.TabIndex = 16;
     this.previewPanel2.Visible = false;
     //
     // scN0FogEditControl1
     //
     this.scN0FogEditControl1.Location = new System.Drawing.Point(-111, -119);
     this.scN0FogEditControl1.Name = "scN0FogEditControl1";
     this.scN0FogEditControl1.Size = new System.Drawing.Size(293, 276);
     this.scN0FogEditControl1.TabIndex = 13;
     this.scN0FogEditControl1.Visible = false;
     //
     // scN0LightEditControl1
     //
     this.scN0LightEditControl1.Location = new System.Drawing.Point(139, -190);
     this.scN0LightEditControl1.Name = "scN0LightEditControl1";
     this.scN0LightEditControl1.Size = new System.Drawing.Size(293, 276);
     this.scN0LightEditControl1.TabIndex = 12;
     this.scN0LightEditControl1.Visible = false;
     //
     // scN0CameraEditControl1
     //
     this.scN0CameraEditControl1.Location = new System.Drawing.Point(104, -191);
     this.scN0CameraEditControl1.Name = "scN0CameraEditControl1";
     this.scN0CameraEditControl1.Size = new System.Drawing.Size(286, 276);
     this.scN0CameraEditControl1.TabIndex = 11;
     this.scN0CameraEditControl1.Visible = false;
     //
     // animEditControl
     //
     this.animEditControl.Location = new System.Drawing.Point(0, 0);
     this.animEditControl.Name = "animEditControl";
     this.animEditControl.Size = new System.Drawing.Size(384, 169);
     this.animEditControl.TabIndex = 1;
     this.animEditControl.Visible = false;
     //
     // shpAnimEditControl
     //
     this.shpAnimEditControl.Location = new System.Drawing.Point(0, 0);
     this.shpAnimEditControl.Name = "shpAnimEditControl";
     this.shpAnimEditControl.Size = new System.Drawing.Size(384, 169);
     this.shpAnimEditControl.TabIndex = 7;
     this.shpAnimEditControl.Visible = false;
     //
     // texAnimEditControl
     //
     this.texAnimEditControl.Location = new System.Drawing.Point(0, 0);
     this.texAnimEditControl.Name = "texAnimEditControl";
     this.texAnimEditControl.Size = new System.Drawing.Size(300, 212);
     this.texAnimEditControl.TabIndex = 7;
     this.texAnimEditControl.Visible = false;
     //
     // audioPlaybackPanel1
     //
     this.audioPlaybackPanel1.Location = new System.Drawing.Point(149, 92);
     this.audioPlaybackPanel1.Name = "audioPlaybackPanel1";
     this.audioPlaybackPanel1.Size = new System.Drawing.Size(70, 111);
     this.audioPlaybackPanel1.TabIndex = 4;
     this.audioPlaybackPanel1.TargetStreams = null;
     this.audioPlaybackPanel1.Visible = false;
     //
     // visEditor
     //
     this.visEditor.Location = new System.Drawing.Point(0, 0);
     this.visEditor.Name = "visEditor";
     this.visEditor.Size = new System.Drawing.Size(78, 87);
     this.visEditor.TabIndex = 6;
     this.visEditor.Visible = false;
     //
     // clrControl
     //
     this.clrControl.ColorID = 0;
     this.clrControl.Location = new System.Drawing.Point(0, 0);
     this.clrControl.Name = "clrControl";
     this.clrControl.Size = new System.Drawing.Size(98, 47);
     this.clrControl.TabIndex = 5;
     this.clrControl.Visible = false;
     //
     // soundPackControl1
     //
     this.soundPackControl1.Location = new System.Drawing.Point(13, 101);
     this.soundPackControl1.Name = "soundPackControl1";
     this.soundPackControl1.Size = new System.Drawing.Size(130, 65);
     this.soundPackControl1.TabIndex = 3;
     this.soundPackControl1.TargetNode = null;
     this.soundPackControl1.Visible = false;
     //
     // msBinEditor1
     //
     this.msBinEditor1.Location = new System.Drawing.Point(104, 4);
     this.msBinEditor1.Name = "msBinEditor1";
     this.msBinEditor1.Size = new System.Drawing.Size(146, 82);
     this.msBinEditor1.TabIndex = 2;
     this.msBinEditor1.Visible = false;
     //
     // MainForm
     //
     this.AllowDrop = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(617, 411);
     this.Controls.Add(this.splitContainer1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.DragDrop += new System.Windows.Forms.DragEventHandler(this.MainForm_DragDrop);
     this.DragEnter += new System.Windows.Forms.DragEventHandler(this.MainForm_DragEnter);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #4
0
 private void InitializeComponent()
 {
     this.components                         = new System.ComponentModel.Container();
     this.clmIndex                           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmName                            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.lstSets                            = new System.Windows.Forms.ListView();
     this.clmType                            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmDataOffset                      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmAudioOffset                     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmEntryOffset                     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip1                  = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuPath                            = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExport                          = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuReplace                         = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1                         = new System.Windows.Forms.MenuStrip();
     this.newFileToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.rWSDToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.rSEQToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.rBNKToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.rSTMToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.externalReferenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.audioPlaybackPanel1                = new System.Windows.Forms.AudioPlaybackPanel();
     this.editToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.makeAllExternalToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.makeAllInternalToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // clmIndex
     //
     this.clmIndex.Text  = "Index";
     this.clmIndex.Width = 40;
     //
     // clmName
     //
     this.clmName.Text  = "Name";
     this.clmName.Width = 40;
     //
     // lstSets
     //
     this.lstSets.AutoArrange = false;
     this.lstSets.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lstSets.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clmIndex,
         this.clmType,
         this.clmName,
         this.clmDataOffset,
         this.clmAudioOffset,
         this.clmEntryOffset
     });
     this.lstSets.ContextMenuStrip = this.contextMenuStrip1;
     this.lstSets.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.lstSets.FullRowSelect    = true;
     this.lstSets.GridLines        = true;
     this.lstSets.HideSelection    = false;
     this.lstSets.LabelWrap        = false;
     this.lstSets.Location         = new System.Drawing.Point(0, 28);
     this.lstSets.MultiSelect      = false;
     this.lstSets.Name             = "lstSets";
     this.lstSets.Size             = new System.Drawing.Size(389, 105);
     this.lstSets.TabIndex         = 0;
     this.lstSets.UseCompatibleStateImageBehavior = false;
     this.lstSets.View                  = System.Windows.Forms.View.Details;
     this.lstSets.ColumnClick          += new System.Windows.Forms.ColumnClickEventHandler(this.lstSets_ColumnClick);
     this.lstSets.SelectedIndexChanged += new System.EventHandler(this.lstSets_SelectedIndexChanged);
     this.lstSets.DoubleClick          += new System.EventHandler(this.lstSets_DoubleClick);
     this.lstSets.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.lstSets_KeyDown);
     //
     // clmType
     //
     this.clmType.Text = "Type";
     //
     // clmDataOffset
     //
     this.clmDataOffset.Text  = "Data Offset";
     this.clmDataOffset.Width = 70;
     //
     // clmAudioOffset
     //
     this.clmAudioOffset.Text  = "Audio Offset";
     this.clmAudioOffset.Width = 70;
     //
     // clmEntryOffset
     //
     this.clmEntryOffset.Text  = "Entry Offset";
     this.clmEntryOffset.Width = 80;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuPath,
         this.mnuExport,
         this.mnuReplace,
         this.deleteToolStripMenuItem
     });
     this.contextMenuStrip1.Name     = "contextMenuStrip1";
     this.contextMenuStrip1.Size     = new System.Drawing.Size(138, 108);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // mnuPath
     //
     this.mnuPath.Name   = "mnuPath";
     this.mnuPath.Size   = new System.Drawing.Size(137, 26);
     this.mnuPath.Text   = "Path...";
     this.mnuPath.Click += new System.EventHandler(this.mnuPath_Click);
     //
     // mnuExport
     //
     this.mnuExport.Name   = "mnuExport";
     this.mnuExport.Size   = new System.Drawing.Size(137, 26);
     this.mnuExport.Text   = "Export";
     this.mnuExport.Click += new System.EventHandler(this.mnuExport_Click);
     //
     // mnuReplace
     //
     this.mnuReplace.Name   = "mnuReplace";
     this.mnuReplace.Size   = new System.Drawing.Size(137, 26);
     this.mnuReplace.Text   = "Replace";
     this.mnuReplace.Click += new System.EventHandler(this.mnuReplace_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size   = new System.Drawing.Size(137, 26);
     this.deleteToolStripMenuItem.Text   = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newFileToolStripMenuItem,
         this.editToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(389, 28);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // newFileToolStripMenuItem
     //
     this.newFileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.rWSDToolStripMenuItem,
         this.rSEQToolStripMenuItem,
         this.rBNKToolStripMenuItem,
         this.rSTMToolStripMenuItem,
         this.externalReferenceToolStripMenuItem
     });
     this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem";
     this.newFileToolStripMenuItem.Size = new System.Drawing.Size(78, 24);
     this.newFileToolStripMenuItem.Text = "New File";
     //
     // rWSDToolStripMenuItem
     //
     this.rWSDToolStripMenuItem.Name   = "rWSDToolStripMenuItem";
     this.rWSDToolStripMenuItem.Size   = new System.Drawing.Size(207, 26);
     this.rWSDToolStripMenuItem.Text   = "RWSD";
     this.rWSDToolStripMenuItem.Click += new System.EventHandler(this.rWSDToolStripMenuItem_Click);
     //
     // rSEQToolStripMenuItem
     //
     this.rSEQToolStripMenuItem.Name   = "rSEQToolStripMenuItem";
     this.rSEQToolStripMenuItem.Size   = new System.Drawing.Size(207, 26);
     this.rSEQToolStripMenuItem.Text   = "RSEQ";
     this.rSEQToolStripMenuItem.Click += new System.EventHandler(this.rSEQToolStripMenuItem_Click);
     //
     // rBNKToolStripMenuItem
     //
     this.rBNKToolStripMenuItem.Name   = "rBNKToolStripMenuItem";
     this.rBNKToolStripMenuItem.Size   = new System.Drawing.Size(207, 26);
     this.rBNKToolStripMenuItem.Text   = "RBNK";
     this.rBNKToolStripMenuItem.Click += new System.EventHandler(this.rBNKToolStripMenuItem_Click);
     //
     // rSTMToolStripMenuItem
     //
     this.rSTMToolStripMenuItem.Name   = "rSTMToolStripMenuItem";
     this.rSTMToolStripMenuItem.Size   = new System.Drawing.Size(207, 26);
     this.rSTMToolStripMenuItem.Text   = "RSTM";
     this.rSTMToolStripMenuItem.Click += new System.EventHandler(this.rSTMToolStripMenuItem_Click);
     //
     // externalReferenceToolStripMenuItem
     //
     this.externalReferenceToolStripMenuItem.Name   = "externalReferenceToolStripMenuItem";
     this.externalReferenceToolStripMenuItem.Size   = new System.Drawing.Size(207, 26);
     this.externalReferenceToolStripMenuItem.Text   = "External Reference";
     this.externalReferenceToolStripMenuItem.Click += new System.EventHandler(this.externalReferenceToolStripMenuItem_Click);
     //
     // audioPlaybackPanel1
     //
     this.audioPlaybackPanel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.audioPlaybackPanel1.Location      = new System.Drawing.Point(0, 133);
     this.audioPlaybackPanel1.Name          = "audioPlaybackPanel1";
     this.audioPlaybackPanel1.Size          = new System.Drawing.Size(389, 120);
     this.audioPlaybackPanel1.TabIndex      = 2;
     this.audioPlaybackPanel1.TargetStreams = null;
     this.audioPlaybackPanel1.Visible       = false;
     this.audioPlaybackPanel1.Volume        = 0;
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.makeAllExternalToolStripMenuItem,
         this.makeAllInternalToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(47, 24);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // makeAllExternalToolStripMenuItem
     //
     this.makeAllExternalToolStripMenuItem.Name   = "makeAllExternalToolStripMenuItem";
     this.makeAllExternalToolStripMenuItem.Size   = new System.Drawing.Size(197, 26);
     this.makeAllExternalToolStripMenuItem.Text   = "Make all external";
     this.makeAllExternalToolStripMenuItem.Click += new System.EventHandler(this.makeAllExternalToolStripMenuItem_Click);
     //
     // makeAllInternalToolStripMenuItem
     //
     this.makeAllInternalToolStripMenuItem.Name   = "makeAllInternalToolStripMenuItem";
     this.makeAllInternalToolStripMenuItem.Size   = new System.Drawing.Size(197, 26);
     this.makeAllInternalToolStripMenuItem.Text   = "Make all internal";
     this.makeAllInternalToolStripMenuItem.Click += new System.EventHandler(this.makeAllInternalToolStripMenuItem_Click);
     //
     // SoundPackControl
     //
     this.Controls.Add(this.lstSets);
     this.Controls.Add(this.audioPlaybackPanel1);
     this.Controls.Add(this.menuStrip1);
     this.Name         = "SoundPackControl";
     this.Size         = new System.Drawing.Size(389, 253);
     this.DoubleClick += new System.EventHandler(this.lstSets_DoubleClick);
     this.contextMenuStrip1.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components  = new System.ComponentModel.Container();
     this.btnOkay     = new System.Windows.Forms.Button();
     this.panel1      = new System.Windows.Forms.Panel();
     this.panel2      = new System.Windows.Forms.Panel();
     this.panel3      = new System.Windows.Forms.Panel();
     this.dataListBox = new System.Windows.Forms.ListBox();
     this.ctxData     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.label1              = new System.Windows.Forms.Label();
     this.splitter2           = new System.Windows.Forms.Splitter();
     this.panel4              = new System.Windows.Forms.Panel();
     this.soundsListBox       = new System.Windows.Forms.ListBox();
     this.ctxSounds           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2  = new System.Windows.Forms.ToolStripMenuItem();
     this.label2              = new System.Windows.Forms.Label();
     this.splitter1           = new System.Windows.Forms.Splitter();
     this.propertyGrid        = new System.Windows.Forms.PropertyGrid();
     this.audioPlaybackPanel1 = new System.Windows.Forms.AudioPlaybackPanel();
     this.button1             = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.ctxData.SuspendLayout();
     this.panel4.SuspendLayout();
     this.ctxSounds.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOkay
     //
     this.btnOkay.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOkay.Location = new System.Drawing.Point(369, 3);
     this.btnOkay.Name     = "btnOkay";
     this.btnOkay.Size     = new System.Drawing.Size(75, 23);
     this.btnOkay.TabIndex = 1;
     this.btnOkay.Text     = "&Done";
     this.btnOkay.UseVisualStyleBackColor = true;
     this.btnOkay.Click += new System.EventHandler(this.btnOkay_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnOkay);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 320);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(447, 31);
     this.panel1.TabIndex = 3;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Controls.Add(this.splitter2);
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock        = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location    = new System.Drawing.Point(0, 0);
     this.panel2.MinimumSize = new System.Drawing.Size(54, 0);
     this.panel2.Name        = "panel2";
     this.panel2.Size        = new System.Drawing.Size(107, 320);
     this.panel2.TabIndex    = 4;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.dataListBox);
     this.panel3.Controls.Add(this.label1);
     this.panel3.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location    = new System.Drawing.Point(0, 0);
     this.panel3.Margin      = new System.Windows.Forms.Padding(0);
     this.panel3.MinimumSize = new System.Drawing.Size(0, 15);
     this.panel3.Name        = "panel3";
     this.panel3.Size        = new System.Drawing.Size(107, 160);
     this.panel3.TabIndex    = 1;
     //
     // dataListBox
     //
     this.dataListBox.ContextMenuStrip      = this.ctxData;
     this.dataListBox.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.dataListBox.FormattingEnabled     = true;
     this.dataListBox.IntegralHeight        = false;
     this.dataListBox.Location              = new System.Drawing.Point(0, 15);
     this.dataListBox.Name                  = "dataListBox";
     this.dataListBox.Size                  = new System.Drawing.Size(107, 145);
     this.dataListBox.TabIndex              = 3;
     this.dataListBox.SelectedIndexChanged += new System.EventHandler(this.dataListBox_SelectedIndexChanged);
     //
     // ctxData
     //
     this.ctxData.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.replaceToolStripMenuItem,
         this.exportToolStripMenuItem
     });
     this.ctxData.Name = "contextMenuStrip1";
     this.ctxData.Size = new System.Drawing.Size(116, 48);
     //
     // replaceToolStripMenuItem
     //
     this.replaceToolStripMenuItem.Name   = "replaceToolStripMenuItem";
     this.replaceToolStripMenuItem.Size   = new System.Drawing.Size(115, 22);
     this.replaceToolStripMenuItem.Text   = "Replace";
     this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
     //
     // exportToolStripMenuItem
     //
     this.exportToolStripMenuItem.Name   = "exportToolStripMenuItem";
     this.exportToolStripMenuItem.Size   = new System.Drawing.Size(115, 22);
     this.exportToolStripMenuItem.Text   = "Export";
     this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Dock        = System.Windows.Forms.DockStyle.Top;
     this.label1.Location    = new System.Drawing.Point(0, 0);
     this.label1.Margin      = new System.Windows.Forms.Padding(0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(107, 15);
     this.label1.TabIndex    = 2;
     this.label1.Text        = "Data";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     //
     // splitter2
     //
     this.splitter2.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.splitter2.Location       = new System.Drawing.Point(0, 160);
     this.splitter2.Name           = "splitter2";
     this.splitter2.Size           = new System.Drawing.Size(107, 3);
     this.splitter2.TabIndex       = 0;
     this.splitter2.TabStop        = false;
     this.splitter2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter2_SplitterMoved);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.soundsListBox);
     this.panel4.Controls.Add(this.label2);
     this.panel4.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.panel4.Location    = new System.Drawing.Point(0, 163);
     this.panel4.Margin      = new System.Windows.Forms.Padding(0);
     this.panel4.MinimumSize = new System.Drawing.Size(0, 15);
     this.panel4.Name        = "panel4";
     this.panel4.Size        = new System.Drawing.Size(107, 157);
     this.panel4.TabIndex    = 2;
     //
     // soundsListBox
     //
     this.soundsListBox.ContextMenuStrip      = this.ctxSounds;
     this.soundsListBox.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.soundsListBox.FormattingEnabled     = true;
     this.soundsListBox.IntegralHeight        = false;
     this.soundsListBox.Location              = new System.Drawing.Point(0, 15);
     this.soundsListBox.Name                  = "soundsListBox";
     this.soundsListBox.Size                  = new System.Drawing.Size(107, 142);
     this.soundsListBox.TabIndex              = 2;
     this.soundsListBox.SelectedIndexChanged += new System.EventHandler(this.soundsListBox_SelectedIndexChanged);
     //
     // ctxSounds
     //
     this.ctxSounds.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem1,
         this.toolStripMenuItem2
     });
     this.ctxSounds.Name = "contextMenuStrip1";
     this.ctxSounds.Size = new System.Drawing.Size(116, 48);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name   = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size   = new System.Drawing.Size(115, 22);
     this.toolStripMenuItem1.Text   = "Replace";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name   = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size   = new System.Drawing.Size(115, 22);
     this.toolStripMenuItem2.Text   = "Export";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Dock        = System.Windows.Forms.DockStyle.Top;
     this.label2.Location    = new System.Drawing.Point(0, 0);
     this.label2.Margin      = new System.Windows.Forms.Padding(0);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(107, 15);
     this.label2.TabIndex    = 1;
     this.label2.Text        = "Sounds";
     this.label2.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(107, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 320);
     this.splitter1.TabIndex = 0;
     this.splitter1.TabStop  = false;
     //
     // propertyGrid
     //
     this.propertyGrid.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid.HelpVisible = false;
     this.propertyGrid.Location    = new System.Drawing.Point(110, 21);
     this.propertyGrid.Name        = "propertyGrid";
     this.propertyGrid.Size        = new System.Drawing.Size(337, 188);
     this.propertyGrid.TabIndex    = 5;
     //
     // audioPlaybackPanel1
     //
     this.audioPlaybackPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.audioPlaybackPanel1.Location = new System.Drawing.Point(110, 209);
     this.audioPlaybackPanel1.Name     = "audioPlaybackPanel1";
     this.audioPlaybackPanel1.Size     = new System.Drawing.Size(337, 111);
     this.audioPlaybackPanel1.TabIndex = 6;
     //
     // button1
     //
     this.button1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.button1.Location = new System.Drawing.Point(110, 0);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(337, 21);
     this.button1.TabIndex = 8;
     this.button1.Text     = "View Entries";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // EditRSARFileDialog
     //
     this.AcceptButton = this.btnOkay;
     this.ClientSize   = new System.Drawing.Size(447, 351);
     this.Controls.Add(this.propertyGrid);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.audioPlaybackPanel1);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name          = "EditRSARFileDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Edit RSAR File";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ctxData.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.ctxSounds.ResumeLayout(false);
     this.ResumeLayout(false);
 }