From: yyagi Date: Sun, 3 Jan 2016 05:22:15 +0000 (+0000) Subject: #35890 [DTXC] 「最近開いたファイル」の表示改善。概ねウインドウサイズ内に収まるように、表示パス名を調整した。本当のフルパス名は、toolTipで表示するようにした。 X-Git-Tag: Release099f~3^2~119 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ba4923739b3786c91e63312442fa765e5a2af7e0;p=dtxmania%2Fdtxmania.git #35890 [DTXC] 「最近開いたファイル」の表示改善。概ねウインドウサイズ内に収まるように、表示パス名を調整した。本当のフルパス名は、toolTipで表示するようにした。 なお、resxファイルの差分が大量に発生しているが、こちらへの修正点はなし。(IDEによる自動変更です) git-svn-id: http://svn.osdn.jp/svnroot/dtxmania/trunk@908 16f42ceb-6dc6-49c8-ba94-f2d53467949d --- diff --git a/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.cs b/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.cs index 48f21b62..5a91359e 100644 --- a/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.cs +++ b/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.cs @@ -2122,10 +2122,12 @@ namespace DTXCreator #region [ ToolStripMenuItem を手動で作って [ファイル] のサブメニューリストに追加する。] //----------------- + string strShotenPath = AdjustPathString( path ); // #35890 2016.1.3 yyagi; shorten "RecentFiles" text if needed var item2 = new ToolStripMenuItem() { Name = "最近使ったファイル" + i, Size = this.toolStripMenuItem終了.Size, - Text = "&" + i + " " + path, + Text = "&" + i + " " + strShotenPath, + ToolTipText = path, }; item2.Click += new EventHandler( this.toolStripMenuItem最近使ったファイル_Click ); this.toolStripMenuItemファイル.DropDownItems.Add( item2 ); @@ -2145,6 +2147,53 @@ namespace DTXCreator //----------------- #endregion } + // 参考: http://gushwell.ldblog.jp/archives/50815731.html + private string AdjustPathString( string text ) + { + int nTargetWidth = (int)(this.Width * 0.8f); + Bitmap bmp = new Bitmap(nTargetWidth, this.Height); + Graphics g = Graphics.FromImage( bmp ); + var item = new ToolStripMenuItem(); + SizeF size = g.MeasureString( text, item.Font ); +//Debug.WriteLine( "WinWidth"+ this.Width + ", now=" + size.Width + ", font=" + this.Font.ToString()); + while ( nTargetWidth < size.Width ) + { + string text2 = ShortenPathString( text ); + if ( text == text2 ) + break; + size = g.MeasureString( text2, this.Font ); + text = text2; +//Debug.WriteLine( "winWidth" + this.Width + ", now=" + size.Width + ", font=" + this.Font.ToString() ); + } + item.Dispose(); + g.Dispose(); + bmp.Dispose(); + return text; + } + private string ShortenPathString( string text ) + { + int nWidth = this.Width; + List list = new List(text.Split('\\')); + int i = list.Count / 2; + if ( list[i] != "..." ) + { + list[i] = "..."; + } + else + { + if ( list.Count % 2 == 0 && i > 1 ) + list.RemoveAt(i - 1); + else if ( list.Count % 2 == 1 && i < list.Count - 2 ) + list.RemoveAt(i + 1); + } + StringBuilder sb = new StringBuilder(list[0]); + for ( int n = 1; n < list.Count; n++ ) { + sb.Append('\\').Append(list[n]); + } +//Debug.WriteLine( "org:" + text ); +//Debug.WriteLine( "now:" + sb ); + return sb.ToString(); + } public void tWAV_BMP_AVIリストのカーソルを全部同じ行に合わせる( int nIndex番号0to1294 ) { if( nIndex番号0to1294 >= 0 && nIndex番号0to1294 <= 1294 ) diff --git a/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.resx b/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.resx index 44dda83a..343bbe22 100644 --- a/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.resx +++ b/DTXCreatorプロジェクト/コード/00.全体/Cメインフォーム.resx @@ -117,2710 +117,2703 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Magenta + + + Fill - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0, 49 - - toolStripツールバー + + + True - - 85, 311 + + 85, 362 - - 1 + + 143, 16 - - 156, 19 + + 14 - - - True + + Use 556x710 BGA/AVI - - tabPageBMP + + check556x710BGAAVI - - tabPageWAV + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemガイド間隔拡大 + + tabPage基本情報 - - Play from top with a viewer + + 0 - + True - - tabPage基本情報 - - - x1.1 + + NoControl - - 23, 22 + + 44, 87 - - tabPage基本情報 + + 35, 12 - - An image file shown in result screen. -The image size is 204x269. + + 31 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Genre - - tabPage基本情報 + + TopRight - - toolStripMenuItem現在位置からBGMのみ再生 + + 572, 17 + + + Genre - - - Ctrl+F + + labelGenre - - 6, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - + Top, Left, Right - - 127 + + 85, 84 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 187, 19 - - 29, 12 + + 3 - - 272, 25 + + Genre - - toolStripButton1 + + textBoxGenre - - &Find... + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton上書き保存 + + tabPage基本情報 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 156, 19 + + Top, Right - - labelSTAGEFILE + + 247, 336 - - Play sound on click + + 25, 23 - - toolStripMenuItemガイド間隔縮小 + + 25 - - 17 + + ... - - hScrollBarBLEVEL + + Select file... - - $this + + buttonRESULTIMAGE参照 - - Comment + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - Change part length(&B) + + 3 - - Top, Left, Right + + Top, Right - - textBox自由入力欄 + + 247, 311 - - Guitar level, (easy) 1 to 100 (Hard). -0 means no drums. + + 25, 23 - - 4 + + 23 - - 156, 19 + + ... - - 3, 390 + + Select file... - - toolStripSeparator9 + + buttonBACKGROUND参照 - - 215, 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 85, 210 + + tabPage基本情報 - - System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 1/&4 + + Top, Right - - Ctrl+O + + 247, 286 - - tabPage基本情報 + + 25, 23 - - 85, 236 + + 21 - - 33 + + ... - - Ctrl+N + + Select file... - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + buttonSTAGEFILE参照 - - F7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 218, 22 + + tabPage基本情報 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - buttonPREVIEW参照 + + Top, Right - - tabControl情報パネル + + 247, 261 - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 25, 23 - - 138, 22 + + 19 - - 0 + + ... - - tabPage基本情報 + + Select file... - - 3, 3 + + buttonPREIMAGE参照 - - toolStrip1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Play &BGM from current part + + tabPage基本情報 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 187, 19 + + Top, Right - - 43, 20 + + 247, 236 + + + 25, 23 + + + 17 ... - - toolStripMenuItemアンドゥ - - - 120 + + Select file... - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + buttonPREVIEW参照 - - 35 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - toolStripMenuItem置換 + + True - - Top, Left, Right + + 11, 339 - - Title + + 68, 12 - - False + + 27 - - labelGLEVEL + + ResultImage - - toolStripMenuItemツール + + TopRight - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + An image file shown in result screen. +The image size is 204x269. - - labelDLEVEL + + labeRESULTIMAGE - - 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tabPage基本情報 - - 50, 114 + + 8 - - + + True - - TopRight + + 18, 314 - - tabPage基本情報 + + 61, 12 - - 34 + + 29 - - textBoxパネル + + BackImage - - 156, 19 + + TopRight - - 3, 3, 3, 3 + + A background image file drawn on play screen. +The image size is 640x480. - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labelBACKGROUND - - Ctrl+C + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + tabPage基本情報 - - 0, 493 + + 9 - - 4, 22 + + True - - toolStripButton現在位置から再生 + + 5, 289 - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 74, 12 - - Select all in the pa&rt [] + + 28 - - tabPage基本情報 + + LoadingImage - - tabPage基本情報 + + TopRight - - 18, 314 + + A background image file drawn at loading song. +The image size is 640x480. - - 85, 161 + + labelSTAGEFILE - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10, 10, 10, 10 + + tabPage基本情報 - - 7 + + 10 - - 272, 387 + + True - - Panel message shown in playing screen. + + 26, 264 - - &Edit + + 52, 12 - - + + 27 - - GuitarLv. - + + Preimage - - 27 + + TopRight - - toolStripMenuItemファイル + + Preview image shown when song selected. +The image size is 204x269. - - Magenta + + labelPREIMAGE - - x0.5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tabPage基本情報 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Redo - + + 11 - - 1/24 + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 33, 241 - - textBox製作者 + + 45, 12 - - TopRight + + 26 - - Top, Left, Right + + Preview - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TopRight - - &Help + + Preview sound played when song selected - - Play BGM from currect part with a viewer + + labelPREVIEW - - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Drums level, (easy) 1 to 100 (Hard). -0 means no drums. + + tabPage基本情報 - - x9 + + 12 - - 278, 418 + + Top, Left, Right - - x6 + + 85, 336 - - 182, 6 + + 156, 19 - - x8 + + 13 - - x7 + + An image file shown in result screen. +The image size is 204x269. - + + textBoxRESULTIMAGE + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + tabPage基本情報 - - x3 + + 13 - - toolStripComboBoxガイド間隔 + + Top, Left, Right - - + + 85, 311 - - 23, 22 + + 156, 19 - - buttonSTAGEFILE参照 + + 12 - - Chip &palette + + A background image file drawn on play screen. +The image size is 640x480. - - 209, 22 + + textBoxBACKGROUND - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - 731, 24 + + 14 - - Preview image shown when song selected. -The image size is 204x269. + + Top, Left, Right - - tabControl情報パネル + + 85, 286 - - 15 + + 156, 19 - - 5 + + 11 - - toolStripSeparator13 + + An image file shown in result screen. +The image size is 204x269. - - ... + + textBoxSTAGEFILE - - Select file... + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tabPage基本情報 - - 4 + + 15 - - Ctrl+S + + Top, Left, Right - - Guide margin + + 85, 261 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 156, 19 - - NoControl + + 10 - - label製作者 + + Preview image shown when song selected. +The image size is 204x269. - - 185, 22 + + textBoxPREIMAGE - - 29 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tabPage基本情報 - - 19 + + 16 - - Default + + Top, Left, Right - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 236 - - System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 156, 19 - - 5, 289 + + 9 - - File + + Preview sound played when song selected - - Label + + textBoxPREVIEW - - Drums level, (easy) 1 to 100 (Hard). -0 means no drums. + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - numericUpDownBPM + + tabPage基本情報 - - Del + + 17 - - 1/8 + + Top, Left, Right - - toolStripButton切り取り + + 85, 210 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 187, 19 - - 29, 164 + + 8 - - toolStripMenuItem選択モード + + Panel message shown in playing screen. - - tabPage基本情報 + + textBoxパネル - - Bottom + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1/48 + + tabPage基本情報 - - 185, 22 + + 18 - - toolStripButton削除 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - labelBPM - - - 124, 161 + + True - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18, 213 - - Magenta + + 60, 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Panel msg. - - No + + TopRight - - + + Panel message shown in playing screen. - - toolStripAVIツールバー + + labelパネル - - 152, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DrumLv. + + tabPage基本情報 - - + + 19 - - toolStripMenuItem新規 + + True - - label曲名 + + 33, 185 - - 0 + + 45, 12 - - Microsoft Sans Serif, 9pt + + 13 - - x4 + + BassLv. - - 12 + + TopRight - - columnHeaderWAV_番号 + + Bass level, (easy) 1 to 100 (Hard). +0 means no drums. - - Fill + + labelBLEVEL - - 6, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - x1.3 + + 20 - - toolStripMenuItemモード切替 + + 85, 182 - - 40 + + 36, 19 - - 1 + + 7 - - 26, 264 + + Center - - columnHeaderAVI_ファイル名 + + Bass level, (easy) 1 to 100 (Hard). +0 means no drums. textBoxBLEVEL - - 1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + tabPage基本情報 - - AVI + + 21 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Left, Right - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 124, 182 - - Tex + + 148, 17 - - 0, 0 + + 7 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bass level, (easy) 1 to 100 (Hard). +0 means no drums. - - Magenta + + hScrollBarBLEVEL - - toolStripButton1 + + System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23 + + tabPage基本情報 - - &Delete selected chip(s) + + 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TopRight + + 29, 164 - - 85, 56 + + 50, 12 - - toolStripMenuItem削除 + + 12 - - Genre + + GuitarLv. + - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TopRight - - 218, 22 + + Guitar level, (easy) 1 to 100 (Hard). +0 means no drums. - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labelGLEVEL - - 33, 143 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 272, 412 + + tabPage基本情報 - - 85, 140 + + 23 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 161 - - textBoxBACKGROUND + + 36, 19 - - Move down + + 6 - - Magenta + + Center - - 25, 23 + + Guitar level, (easy) 1 to 100 (Hard). +0 means no drums. - - 0 + + textBoxGLEVEL - - 11 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + tabPage基本情報 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24 - - 8 + + Top, Left, Right - - 25, 23 + + 124, 161 - - buttonBACKGROUND参照 - - - toolStripButton1 + + 148, 17 - - toolStripButtonAVIリスト下移動 + + 6 - - generateBPMFromBeatChipsToolStripMenuItem + + Guitar level, (easy) 1 to 100 (Hard). +0 means no drums. - - 23, 22 + + hScrollBarGLEVEL - - 163, 22 + + System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + tabPage基本情報 - - toolStripButton選択モード + + 25 - - Preview sound played when song selected + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 33, 143 - - 21 + + 46, 12 - - hScrollBarDLEVEL + + 11 - - True + + DrumLv. - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TopRight - - toolStripSeparator7 + + Drums level, (easy) 1 to 100 (Hard). +0 means no drums. - - 23, 22 + + labelDLEVEL - - 50, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Ctrl+V + + tabPage基本情報 - - toolStripButton再生停止 + + 26 - - Paste chip(s) - + + 85, 140 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 36, 19 - - 1 + + 5 - - tabPage基本情報 + + Center - - Bass level, (easy) 1 to 100 (Hard). + + Drums level, (easy) 1 to 100 (Hard). 0 means no drums. - - toolStripSeparator18 - - - 80 + + textBoxDLEVEL - - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - Fill + + 27 - - TopRight + + Top, Left, Right - - 8 + + 124, 140 - - tabPage基本情報 + + 148, 17 - - 6, 12 + + 5 - - 187, 19 + + Drums level, (easy) 1 to 100 (Hard). +0 means no drums. - - TopRight + + hScrollBarDLEVEL - - splitContainerタブと譜面を分割.Panel2 + + System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem選択チップの削除 + + tabPage基本情報 - - toolStripButtonチップパレット + + 28 - - 29 + + True - - 14 + + 50, 114 - - x0.6 + + 29, 12 - - $this + + 8 - - Free + + BPM - - 1/64 + + TopRight - - 5 + + Song's BGM (Beats Per Minute) - - 1/32 + + labelBPM - - 1/24 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1/16 + + tabPage基本情報 - - 1/12 + + 29 - - toolStripButton1 + + True - - 138, 22 + + 26, 59 - - toolStripMenuItemガイド間隔4分 + + 53, 12 - - 85, 31 + + 7 - - + + Comment - - 20 + + TopRight - - Copy selected chip(s) - + + Comment - - Fill + + labelコメント - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - x1.0 + + tabPage基本情報 - - 185, 22 + + 30 - - tabControl情報パネル + + True - - textBoxDLEVEL + + 44, 34 - - Magenta + + 34, 12 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 34 + + Artist - - 163, 22 - - - Pos. + + TopRight - - columnHeaderBMP_TEX + + Artist name - - tabPageAVI + + label製作者 - - x1.4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 444 + + tabPage基本情報 - - x1.5 + + 31 - - labelBACKGROUND + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 9 - - Magenta + + 28, 12 - - System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 1 + + Title - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TopRight - - 30 + + Song title - - 187, 19 + + label曲名 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemバージョン + + tabPage基本情報 - - Main + + 32 - - 36 + + 85, 112 - - vScrollBar譜面用垂直スクロールバー + + 68, 19 - - toolStripMenuItemガイド間隔24分 + + 4 - - Song title + + Center - - System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Song's BGM (Beats Per Minute) - - 23, 22 + + numericUpDownBPM - - 50, 9 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem切り取り + + tabPage基本情報 - - 247, 286 + + 33 - - listViewWAVリスト + + Top, Left, Right - - Open a file - + + 85, 56 - - True + + 187, 19 - - 4, 22 + + 2 - - Both + + Comment - - tabPage基本情報 + + textBoxコメント - - toolStripMenuItemすべて選択 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage基本情報 - - 12 + + 34 - - 7 + + Top, Left, Right - - 18, 213 + + 85, 31 - - &Play from current part + + 187, 19 - - toolStripMenuItemガイド間隔フリー + + 1 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Artist name - - E&xperimental Features... + + textBox製作者 - - F5 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemヘルプ + + tabPage基本情報 - - 731, 22 + + 35 - - Play from &top + + Top, Left, Right - - Ctrl+X + + 85, 6 - - 12 + + 10, 19 - - 124, 182 + + 187, 19 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - Magenta + + Song title - - 215, 6 + + textBox曲名 - - textBoxPREIMAGE + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TopRight + + tabPage基本情報 - - 0 + + 36 - - toolStripButton1 + + 4, 22 - - 25, 23 + + 3, 3, 3, 3 - - 24 + + 278, 418 - - toolStripMenuItem再生 + + 0 - - 6 + + Main - + tabPage基本情報 - - &Copy - - - labelパネル - - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabControl情報パネル - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - toolStripButton1 + + 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label - - toolStripButton貼り付け + + 80 - - 85, 362 + + No - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 28 - - 23, 22 + + File - - toolStripMenuItem検索 + + 80 - - Select &All + + Vol. - - tabPage基本情報 + + 40 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Pos. - - Magenta + + 40 - - Generate &BPM from Beat chips + + BGM - - pictureBox譜面パネル + + 34 - - 5 + + Fill - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Microsoft Sans Serif, 9pt - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 272, 387 - - Play from current part with a viewer + + 0 - - 26 + + listViewWAVリスト - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + tabPageWAV - - tabPage基本情報 + + 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 390 + + + Bottom - - False + + Magenta - - + + 23, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - &Undo + + Move up - - tabPage自由入力 + + Magenta - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 22 - + toolStripButton1 - - Ctrl+H - - - 7 - - - toolStripMenuItem現在位置から再生 - - - 75, 25 + + Move down - - toolStripMenuItemガイド間隔8分 + + 6, 25 - + Magenta - - 235, 22 - - - Select mode - + + 23, 22 - - 278, 418 + + toolStripButton1 - - 26, 59 + + Play the current wave sound - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - 31 + + Stop sound - - toolStripButtonWAVリストプレビュー再生開始 + + 6, 25 - - 235, 22 + + Magenta - + 23, 22 - - メニューバー - - - 85, 286 - - - 4, 22 + + toolStripButton1 - - 23, 22 + + Play sound on click - - 6, 25 + + 3, 390 - - toolStripButton1 + + 272, 25 - - 20 + + 0 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + WAVリストパネル + - - + + toolStripWAVツールバー - - 272, 387 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPageWAV - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - + 4, 22 - - 6, 25 + + 3, 3, 3, 3 - - toolStripMenuItem小節長変更 + + 278, 418 - - toolStripSeparator11 + + 1 - - 1/1&2 + + WAV - - 26 + + tabPageWAV - - 247, 336 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabControl情報パネル - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 6 + + Tex - - System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 34 - - toolStripSeparator10 + + Label - - 85, 336 + + 127 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - Magenta + + 28 - - toolStripButton新規作成 + + File - - Center + + 120 - + + Fill + + + Microsoft Sans Serif, 9pt + + + 3, 3 + + + 272, 387 + + 1 - - Vol. + + listViewBMPリスト - - 247, 261 + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + tabPageBMP - - 278, 418 + + 0 - - 23, 22 + + 3, 390 + + + Bottom - - contextMenuStrip譜面右メニュー + + Magenta - - 46, 12 + + 23, 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - textBoxSTAGEFILE + + Magenta - - System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 22 - - 35, 12 + + toolStripButton1 - - tabPageAVI + + 3, 390 - - False + + 272, 25 - - A background image file drawn on play screen. -The image size is 640x480. + + 2 - - ... + + BMPリストツールバー + - - + + toolStripBMPツールバー - - 0, 0 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tabPageBMP - + 1 - - False - - - Top, Left, Right + + 4, 22 - - 1/&8 + + 3, 3, 3, 3 - - 0, 427 + + 278, 418 - - Preview image shown when song selected. -The image size is 204x269. + + 2 - - Free + + BMP - - Top, Left, Right + + tabPageBMP - - 28 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - A background image file drawn on play screen. -The image size is 640x480. + + tabControl情報パネル - - Replace(&Q) + + 2 - - toolStripButtonAVIリスト上移動 + + Label - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 127 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + No - - Move down + + 28 - - tabPage基本情報 + + File - - x1.2 + + 120 - - Select file... + + Fill - - toolStripButton編集モード + + Microsoft Sans Serif, 9pt - - 36, 19 + + 3, 3 - - 218, 22 + + 272, 387 1 - - False + + listViewAVIリスト - - 218, 22 + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 61, 12 + + tabPageAVI - - splitContainerタブと譜面を分割.Panel1 + + 0 - - &Paste chip(s) + + 3, 390 + + + Bottom - - 138, 22 + + Magenta - - System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 22 - - True + + toolStripButton1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Move up - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - 160, 6 + + 23, 22 - - &Play - - - 9 - - + toolStripButton1 - - 253, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabPage基本情報 - - - True - - - 75, 25 + + Move down - - System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 390 - - + + 272, 25 - - 2 + + 0 - - 218, 22 + + AVIリストツールバー - - E&xit + + toolStripAVIツールバー - - 2 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 138, 22 + + tabPageAVI - - toolStripMenuItem小節の削除 + + 1 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 22 3, 3, 3, 3 - - toolStripMenuItem先頭から再生 + + 278, 418 - - 31 + + 3 - - Chip palette + + AVI - - toolStripMenuItemレーン内のすべてのチップの選択1 + + tabPageAVI - - 3, 390 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + tabControl情報パネル - - 25 + + 3 - - Center + + Fill - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3 - - toolStripMenuItemガイド間隔 + + 10, 10, 10, 10 - - 235, 22 + + True - - check556x710BGAAVI + + Both - - toolStripButton1 + + 272, 412 - - TopRight + + 0 - - 253, 22 + + textBox自由入力欄 - - 14 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 187, 19 + + tabPage自由入力 - - tabPage基本情報 + + 0 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 22 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - 25 + + 278, 418 - - Microsoft Sans Serif, 9pt + + 4 - - Top, Left, Right + + Free - - + + tabPage自由入力 - - 3 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + tabControl情報パネル - - 5 + + 4 - - + + Fill - - Magenta + + 0, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 286, 444 - - Top, Left, Right + + 0 - - 218, 22 + + tabControl情報パネル - - 6, 25 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + splitContainerタブと譜面を分割.Panel1 - - Magenta + + 0 - - Stop playing + + splitContainerタブと譜面を分割.Panel1 - - Top, Left, Right + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton1 + + splitContainerタブと譜面を分割 - + 0 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Bottom, Left - - toolStripMenuItem小節の挿入 + + 0, 0 - - BassLv. + + 0, 0, 0, 0 - - toolStripButton1 + + 184, 427 - - tabPage基本情報 + + 1 - - 6, 25 + + pictureBox譜面パネル - - toolStripMenuItem編集モード + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Move up + + splitContainerタブと譜面を分割.Panel2 - - F1 + + 0 - - Select file... + + Bottom - - toolStripWAVツールバー + + 0, 427 - - D&elete part + + 424, 17 - - &Paste + + 0 - - 143, 16 + + hScrollBar譜面用水平スクロールバー - - toolStripButton1 + + System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Ctrl+A + + splitContainerタブと譜面を分割.Panel2 - - 1/48 + + 1 - - Preimage + + splitContainerタブと譜面を分割.Panel2 - - toolStripButtonリドゥ + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Song title + + splitContainerタブと譜面を分割 - - toolStripSeparator1 + + 1 - - 218, 22 + + 714, 444 - - columnHeaderWAV_BGM + + 286 - - 127 + + 4 - - 219, 292 + + splitContainerタブと譜面を分割 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &Edit mode + + $this - - tabControl情報パネル + + 1 - - 32 + + 0, 493 + + + 0, 493 - - 3 + + 731, 22 - - tabPageBMP + + 0 - - tabPage基本情報 + + ステータスバー - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + statusStripステータスバー - - 36, 19 + + System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 272, 25 + + $this - - 3, 3, 3, 3 + + 4 - - 43, 20 + + 0, 0 + + + Ctrl+N - - 80 + + 163, 22 - - &Tool + + &New - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Ctrl+O - - 74, 12 + + 163, 22 - - 6 + + &Open... - - Fill + + Ctrl+S - - toolStripMenuItem編集 + + 163, 22 - - splitContainerタブと譜面を分割 + + &Save - - labelGenre + + 163, 22 - - Cu&t selected chip(s) + + Save &As ... - - 138, 22 + + 160, 6 - - labelコメント + + 163, 22 - - $this + + E&xit - - 138, 22 + + 39, 20 - - 28 + + &File - + + Ctrl+Z + + 185, 22 - - 45, 12 + + &Undo - - 53, 12 + + Ctrl+Y - - 52, 12 + + 185, 22 - - Guitar level, (easy) 1 to 100 (Hard). -0 means no drums. + + &Redo - - toolStripButton1 + + 182, 6 - - toolStripSeparator14 + + False - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Ctrl+X - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 22 - - 0 + + Cu&t - - tabPageBMP + + False - - 156, 19 + + Ctrl+C - - 85, 182 + + 185, 22 - - &Narrow + + &Copy - - True + + False - - 39, 20 + + Ctrl+V - - toolStripButtonWAVリストプレビュー再生停止 + + 185, 22 - - x0.9 + + &Paste - - 218, 22 + + False - - Magenta + + Del - - tabPage基本情報 + + 185, 22 - - &Copy selected chip(s) + + &Delete - - 3, 3 - - - 148, 17 + + 182, 6 - - 68, 12 + + Ctrl+A - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 22 - - F8 + + Select &All - - toolStripMenuItem選択チップの貼り付け + + 182, 6 - - 0, 0 + + 185, 22 - - labelBLEVEL + + &Select mode - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 22 - - 25, 23 + + &Edit mode - - 85, 6 + + F8 - - &Free + + 185, 22 - - 33, 185 + + Switch &Mode - - Ctrl+Z + + 182, 6 - - 6, 25 + + Ctrl+F - - Magenta + + 185, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + &Find... - - 182, 6 + + Ctrl+H - - Bottom + + 185, 22 - - 148, 17 + + Replace(&Q) - - toolStripComboBox譜面拡大率 + + 41, 20 - - System.Windows.Forms.HScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + &Edit - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 152, 22 - - 23, 22 + + Chip &palette - - 0, 24 + + 138, 22 - - Label + + 1/&4 - - Save to file + + 138, 22 - - Move up + + 1/&8 - - Artist + + 138, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1/1&2 - - Drums level, (easy) 1 to 100 (Hard). -0 means no drums. + + 138, 22 - - 163, 22 + + 1/1&6 - - Comment + + 138, 22 - - Top, Left, Right + + 1/24 - - 11 + + 138, 22 - - Fill + + 1/&32 - - 0 + + 138, 22 - - 185, 22 + + 1/48 - - + + 138, 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1/64 - - 11, 339 + + 138, 22 - - 272, 25 + + &Free - - Play speed (#DTXVPLAYSPEED) + + 135, 6 - - 714, 444 + + F3 - - 28, 12 + + 138, 22 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + &Wide - - 1 + + F4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 138, 22 - - toolStripSeparator6 + + &Narrow - - 185, 22 + + 152, 22 - - Top, Bottom, Left + + &Guide margin - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 47, 20 - - textBoxGLEVEL + + &View - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + F5 - - 184, 427 + + 235, 22 - - 9 + + Play from &top - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + F6 - - Undo + + 235, 22 - - An image file shown in result screen. -The image size is 204x269. + + &Play from current part - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 235, 22 - - Top, Left, Right + + Play &BGM from current part - - + + F7 - - 23, 22 + + 235, 22 - - F4 + + &Stop - - Magenta + + 43, 20 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23, 22 + + &Play - - 8 + + 112, 22 - - File + + &Option - - 1/&32 + + 43, 20 - - $this + + &Tool - - toolStripMenuItem選択チップのコピー + + F1 - - Play the current wave sound + + 209, 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DTXCreator &Manual - - toolStripButtonBMPリスト上移動 + + 209, 22 - - Magenta + + &Version - - 138, 22 + + 45, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + &Help - - toolStripSeparator2 + + 0, 0 - - 3, 390 + + 731, 24 - - 41, 20 + + 1 - - 16, 39 + + メニューバー - - 247, 236 + + menuStripメニューバー - - 218, 22 + + System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - &File + + 5 - - splitContainerタブと譜面を分割.Panel2 + + 0, 24 + + + Magenta - - columnHeaderWAV_位置 + + 23, 22 - - 21 + + toolStripButton1 - - WAVリストパネル - + + Create a new file - - + + Magenta - - toolStripMenuItem表示 + + 23, 22 - - toolStripButton現在位置からBGMのみ再生 + + toolStripButton1 - - 1/64 + + Open a file + - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - tabPageWAV + + 23, 22 - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - Select file... + + Save to file - - tabPage基本情報 + + 6, 25 - - columnHeaderWAV_ファイル名 + + False - - 247, 311 + + Magenta - - Panel msg. + + 23, 22 - - toolStripButtonWAVリストプレビュースイッチ + + toolStripButton1 - - True + + Cut selected chip(s) + - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - Cu&t + + Magenta - - 33, 241 + + 23, 22 - - A background image file drawn at loading song. -The image size is 640x480. + + toolStripButton1 - - 23 + + Copy selected chip(s) + - + False - - 3, 3 - - - x10 + + Magenta - - ResultImage + + 23, 22 - - 163, 22 + + toolStripButton1 - - labeRESULTIMAGE + + Paste chip(s) + - - 2 + + False - - &New + + Magenta - - 215, 6 + + 23, 22 - - Bottom + + toolStripButton1 - - Switch &Mode + + Delete selected chip(s) + - - &Save + + 6, 25 - - toolStripMenuItem終了 + + False - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - toolStripMenuItemリドゥ + + 23, 22 - - Top, Right + + toolStripButton1 - - 85, 261 + + Undo - - Song's BGM (Beats Per Minute) + + False - - toolStripButton1 + + Magenta - - 278, 418 + + 23, 22 - - True + + toolStripButton1 - - 185, 22 + + Redo + - - toolStripButtonWAVリスト下移動 + + 6, 25 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - Top, Right + + 23, 22 - - System.Windows.Forms.VScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - 23, 22 + + Chip palette - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 25 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - 3, 3, 3, 3 + + Default - - 28 + + x2 - - 0 + + x3 - - 23, 22 + + x4 - - 286 + + x5 - - True + + x6 - - Top, Left, Right + + x7 - - Magenta + + x8 - - &Guide margin + + x9 - - True + + x10 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 25 - - 17 + + Vertical sizing - - splitContainerタブと譜面を分割.Panel1 + + 1/4 - - 0 + + 1/8 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1/12 - - 2 + + 1/16 - - 10 + + 1/24 - - toolStripMenuItem貼り付け + + 1/32 - - 19 + + 1/48 - - TopRight + + 1/64 - - BackImage + + Free - - 45, 12 + + 20 - - Label + + 75, 25 - - 23, 22 + + Guide margin - - 36, 19 + + Magenta - - An image file shown in result screen. -The image size is 204x269. + + 23, 22 - + toolStripButton1 - - 124, 140 - - - 182, 6 + + Select mode + - - Artist name + + Magenta - - 185, 22 + + 23, 22 - - AVIリストツールバー + + toolStripButton1 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Edit mode - - False + + 6, 25 - + Magenta - - Preview + + 23, 22 - - toolTipツールチップ + + toolStripButton1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Play from top with a viewer - - 272, 387 + + Magenta - - 185, 22 + + 23, 22 - - x0.7 + + toolStripButton1 - - splitContainerタブと譜面を分割.Panel2 + + Play from current part with a viewer - - experimentalFeaturesToolStripMenuItem + + Magenta - - TopRight + + 23, 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton1 - - 4 + + Play BGM from currect part with a viewer - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - True + + 23, 22 - - 40 + + toolStripButton1 - - toolStripMenuItem選択チップの切り取り + + Stop playing - - TopRight + + False - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + x1.5 - - hScrollBarGLEVEL + + x1.4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + x1.3 - - 4 + + x1.2 - - hScrollBar譜面用水平スクロールバー + + x1.1 - - BPM + + x1.0 - - 34 + + x0.9 - - tabPage基本情報 + + x0.8 - - &Option + + x0.7 - - listViewBMPリスト + + x0.6 - - &Select mode + + x0.5 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 25 - - tabPage基本情報 + + Play speed (#DTXVPLAYSPEED) - - &Stop + + 6, 25 - - 138, 22 + + 0, 24 - - 23, 22 + + 731, 25 - - No + + 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStrip1 - - Artist name + + toolStripツールバー - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 34, 12 + + $this - - ステータスバー + + 3 - - 1 + + Right - - 138, 22 + + 714, 49 - - toolStripButton1 + + 17, 444 - - Stop sound + + 3 - - 44, 34 + + vScrollBar譜面用垂直スクロールバー - - BGM + + System.Windows.Forms.VScrollBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - - BMPリストツールバー - + + 2 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 203, 39 + + + 218, 22 - - 0, 0, 0, 0 + + Cu&t selected chip(s) - - 731, 515 + + 218, 22 - - 424, 17 + + &Copy selected chip(s) - - Microsoft Sans Serif, 9pt + + 218, 22 - - 1/1&6 + + &Paste chip(s) - - Preview sound played when song selected + + 218, 22 - - 3, 3, 3, 3 + + &Delete selected chip(s) - - toolStripMenuItemオプション + + 215, 6 - - 278, 418 + + 218, 22 - - Top, Right + + Select &All - - F3 + + 218, 22 - - 3 + + 218, 22 - - tabPageWAV + + 218, 22 - - toolStripSeparator16 + + Select all in the pa&rt [] - - Comment + + 215, 6 - - True + + 218, 22 - - 25, 23 + + Change part length(&B) - - Center + + 215, 6 - - Magenta + + 218, 22 - - 27 + + &Insert part - - 182, 6 + + 218, 22 - - 4 + + D&elete part - - tabPage基本情報 + + 215, 6 - - toolStripButton1 + + 253, 22 - - Select &All + + Generate &Beat chips - - toolStripMenuItemガイド間隔48分 + + 253, 22 - - toolStripMenuItemガイド間隔12分 + + Generate &BPM from Beat chips + + + 218, 22 + + + E&xperimental Features... + + + 219, 292 + + + contextMenuStrip譜面右メニュー + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + 103 + + + 6, 12 + + + 731, 515 @@ -3247,786 +3240,718 @@ The image size is 204x269. AACH/wAAh/8AAI//AAA= - - 23, 22 + + 16, 39 - - 185, 22 + + DTXCreator - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Right - - - toolStripButton1 + + columnHeaderWAV_ラベル - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + columnHeaderWAV_番号 - - Panel message shown in playing screen. + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 148, 17 + + columnHeaderWAV_ファイル名 - + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &Open... + + columnHeaderWAV_音量 - - toolStripButtonアンドゥ + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 22 + + columnHeaderWAV_位置 - - x0.8 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - columnHeaderBMP_ラベル + + columnHeaderWAV_BGM - - Create a new file + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripSeparator15 + + toolStripButtonWAVリスト上移動 - + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta - - - toolStripComboBox演奏速度 - - - toolStripSeparator17 - - - 23, 22 + + toolStripButtonWAVリスト下移動 - + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 22 + + toolStripSeparator13 - - Top, Right + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButtonWAVリストプレビュー再生開始 - - BMP + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Genre + + toolStripButtonWAVリストプレビュー再生停止 - - 235, 22 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &Redo + + toolStripSeparator14 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 218, 22 + + toolStripButtonWAVリストプレビュースイッチ - - toolStripMenuItemガイド間隔32分 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + columnHeaderBMP_TEX - - 2 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + columnHeaderBMP_ラベル - - + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - No + + columnHeaderBMP_BMP番号 - - Top, Left, Right + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton先頭から再生 + + columnHeaderBMP_ファイル名 - - toolStripButton1 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 44, 87 + + toolStripButtonBMPリスト上移動 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButtonBMPリスト下移動 - - listViewAVIリスト + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + columnHeaderAVI_ラベル - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - menuStripメニューバー + + columnHeaderAVI_AVI番号 - + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DTXCreator &Manual + + columnHeaderAVI_ファイル名 - - tabPage自由入力 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + toolStripButtonAVIリスト上移動 - - Magenta + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - statusStripステータスバー + + toolStripButtonAVIリスト下移動 - - &Delete + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 218, 22 + + toolStripMenuItemファイル - - 6 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + toolStripMenuItem新規 - - tabControl情報パネル + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 286, 444 + + toolStripMenuItem開く - - toolStripButtonコピー + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripMenuItem上書き保存 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItem名前を付けて保存 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemすべてのチップの選択 + + toolStripSeparator1 - + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemガイド間隔16分 + + toolStripMenuItem終了 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + toolStripMenuItem編集 - - 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemアンドゥ - - True + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - textBoxPREVIEW + + toolStripMenuItemリドゥ - - toolStripSeparator3 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TopRight + + toolStripSeparator2 - - toolStripMenuItemコピー + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + toolStripMenuItem切り取り - - 731, 25 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 152, 22 + + toolStripMenuItemコピー - - toolStripMenuItem開く + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10, 19 + + toolStripMenuItem貼り付け - - LoadingImage + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + toolStripMenuItem削除 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 47, 20 + + toolStripSeparator3 - - + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem上書き保存 + + toolStripMenuItemすべて選択 - - toolStripButton1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + toolStripSeparator4 - - 0 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + toolStripMenuItem選択モード - - 120 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + toolStripMenuItem編集モード - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemモード切替 - - + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripSeparator5 - - TopRight + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - textBoxコメント + + toolStripMenuItem検索 - - columnHeaderAVI_AVI番号 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemガイド間隔64分 + + toolStripMenuItem置換 - - generateBeatChipsToolStripMenuItem + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton1 + + toolStripMenuItem表示 - - toolStripButton開く + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButtonWAVリスト上移動 + + toolStripMenuItemチップパレット - - 112, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + toolStripMenuItemガイド間隔 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - textBoxGenre - - - toolStripSeparator8 + + toolStripMenuItemガイド間隔4分 - - ... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemガイド間隔8分 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemガイド間隔12分 - - WAV + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - labelPREVIEW + + toolStripMenuItemガイド間隔16分 - - 85, 84 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - columnHeaderBMP_ファイル名 + + toolStripMenuItemガイド間隔24分 - - toolStripButton1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemガイド間隔32分 - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + toolStripMenuItemガイド間隔48分 - - False + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripMenuItemガイド間隔64分 - - 209, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bass level, (easy) 1 to 100 (Hard). -0 means no drums. + + toolStripMenuItemガイド間隔フリー - - Top, Right + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem再生停止 + + toolStripSeparator6 - - tabPageAVI + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 22 + + toolStripMenuItemガイド間隔拡大 - - False + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemガイド間隔縮小 - - 75, 25 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItem再生 - - 23, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 138, 22 + + toolStripMenuItem先頭から再生 - - Center + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + toolStripMenuItem現在位置から再生 - - 1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Vertical sizing - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1/4 - - - tabPage基本情報 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + toolStripMenuItem現在位置からBGMのみ再生 - - 27 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + toolStripMenuItem再生停止 - - toolStripSeparator12 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - columnHeaderAVI_ラベル + + toolStripMenuItemツール - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton1 + + toolStripMenuItemオプション - - + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 12 + + toolStripMenuItemヘルプ - - Cメインフォーム + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - x5 + + toolStripMenuItemDTXCreaterマニュアル - - columnHeaderWAV_音量 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ... + + toolStripMenuItemバージョン - - textBox曲名 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 218, 22 + + toolStripButton新規作成 - - toolStripMenuItemレーン内のすべてのチップの選択_特定小節以降2 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + toolStripButton開く - - 4, 22 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 138, 22 + + toolStripButton上書き保存 - - F6 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripSeparator7 - + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - textBoxRESULTIMAGE + + toolStripButton切り取り - - x2 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TopRight + + toolStripButtonコピー - - tabPage基本情報 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripButton貼り付け - - 0 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + toolStripButton削除 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &View + + toolStripSeparator8 - - 215, 6 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButtonBMPリスト下移動 + + toolStripButtonアンドゥ - - 13 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45, 20 + + toolStripButtonリドゥ - - Magenta + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - labelPREIMAGE + + toolStripSeparator9 - - 3, 3 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemDTXCreaterマニュアル + + toolStripButtonチップパレット - - Select file... + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Edit mode + + toolStripSeparator10 - - 0, 49 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Delete selected chip(s) - + + toolStripComboBox譜面拡大率 - - 0 + + System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabControl情報パネル + + toolStripComboBoxガイド間隔 - - 16 + + System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 714, 49 + + toolStripButton選択モード - - &Version + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemチップパレット + + toolStripButton編集モード - - 28 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripSeparator11 - - splitContainerタブと譜面を分割 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - splitContainerタブと譜面を分割 + + toolStripButton先頭から再生 - - Cut selected chip(s) - + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bass level, (easy) 1 to 100 (Hard). -0 means no drums. + + toolStripButton現在位置から再生 - - 135, 6 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Use 556x710 BGA/AVI + + toolStripButton現在位置からBGMのみ再生 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem名前を付けて保存 + + toolStripButton再生停止 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bottom + + toolStripComboBox演奏速度 - - 3 + + System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 28 + + toolStripSeparator12 - - 15 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + toolTipツールチップ - - toolStripSeparator4 + + System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DTXCreator + + toolStripMenuItem選択チップの切り取り - - buttonRESULTIMAGE参照 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TopRight + + toolStripMenuItem選択チップのコピー - - 6, 25 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - File + + toolStripMenuItem選択チップの貼り付け - - Save &As ... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Song's BGM (Beats Per Minute) + + toolStripMenuItem選択チップの削除 - - columnHeaderBMP_BMP番号 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &Insert part + + toolStripSeparator15 - - Ctrl+Y + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + toolStripMenuItemすべてのチップの選択 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemレーン内のすべてのチップの選択1 - - 85, 112 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + toolStripMenuItemレーン内のすべてのチップの選択_特定小節以降2 - - toolStripBMPツールバー + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 22 + + toolStripMenuItem小節内のすべてのチップの選択 - - Fill + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripButton1 + + toolStripSeparator16 - - toolStripSeparator5 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 68, 19 + + toolStripMenuItem小節長変更 - - 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripSeparator17 - - Generate &Beat chips + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - &Wide + + toolStripMenuItem小節の挿入 - - Guitar level, (easy) 1 to 100 (Hard). -0 means no drums. + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripMenuItem小節の削除 - - toolStripMenuItem小節内のすべてのチップの選択 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPage基本情報 + + toolStripSeparator18 - - + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + experimentalFeaturesToolStripMenuItem - - buttonPREIMAGE参照 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - columnHeaderWAV_ラベル + + generateBeatChipsToolStripMenuItem - - Genre + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + generateBPMFromBeatChipsToolStripMenuItem - - 187, 19 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + Cメインフォーム + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 390 - - - 0, 24 - - - 3, 390 - - - True - - - 103 - - - 3, 390 - - - 0, 0 - - - 0, 493 - - - 203, 39 - - - 572, 17 - \ No newline at end of file diff --git a/実行時フォルダ(DTXCreator)/DTXCreator.exe b/実行時フォルダ(DTXCreator)/DTXCreator.exe index b92f1bf2..64c2b96c 100644 Binary files a/実行時フォルダ(DTXCreator)/DTXCreator.exe and b/実行時フォルダ(DTXCreator)/DTXCreator.exe differ diff --git a/実行時フォルダ(DTXCreator)/ja-JP/DTXCreator.resources.dll b/実行時フォルダ(DTXCreator)/ja-JP/DTXCreator.resources.dll index 65609cc3..add00c70 100644 Binary files a/実行時フォルダ(DTXCreator)/ja-JP/DTXCreator.resources.dll and b/実行時フォルダ(DTXCreator)/ja-JP/DTXCreator.resources.dll differ