diff --git a/PrimaryFormParts/PrimaryForm.cs b/PrimaryFormParts/PrimaryForm.cs index d181b9c..0d55e97 100644 --- a/PrimaryFormParts/PrimaryForm.cs +++ b/PrimaryFormParts/PrimaryForm.cs @@ -177,7 +177,7 @@ namespace DualScreenDemo private Timer autoRefreshTimer; private Timer timerCountdown; string Rtime; - + bool test = false; //private Label pageNumberLabel; // 添加頁碼標籤 public PrimaryForm() { @@ -1090,7 +1090,8 @@ namespace DualScreenDemo new Bitmap(Path.Combine(serverPath, data["PrimaryFormSubBtn"]["MusicGainNormal"])), new Bitmap(Path.Combine(serverPath, data["PrimaryFormSubBtn"]["MusicGainActive"])), (sender, e) => { OverlayForm.MainForm.ShowTopRightLabel("音量 ↑", "a2 b3 a4"); }); - + + musicDownButton = new Button { Text = "" }; musicDownButton.Name = "musicDownButton"; @@ -1100,6 +1101,23 @@ namespace DualScreenDemo new Bitmap(Path.Combine(serverPath, data["PrimaryFormSubBtn"]["MusicLowActive"])), (sender, e) => { OverlayForm.MainForm.ShowTopRightLabel("音量 ↓", "a2 b4 a4"); }); + if (test) + { + musicUpButton.Click += (sender, e) => + { + videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() + 5); + int vol = videoPlayerForm.GetVolume() - 100; + OverlayForm.MainForm.ShowTopRightLabel(vol.ToString(), null); + }; + + musicDownButton.Click += (sender, e) => + { + videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() - 5); + int vol = videoPlayerForm.GetVolume() - 100; + OverlayForm.MainForm.ShowTopRightLabel(vol.ToString(), null); + }; + + } micUpButton = new Button { Text = "" }; micUpButton.Name = "micUpButton"; @@ -1308,7 +1326,7 @@ namespace DualScreenDemo private void InitializeButton(ref Button button, ref Bitmap normalBackground, ref Bitmap activeBackground, string buttonName, int x, int y, int width, int height, string imagePath, string imagePathb, EventHandler clickEventHandler) { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); button = new Button { Text = "", Name = buttonName }; ResizeAndPositionButton(button, x, y, width, height); @@ -1374,10 +1392,18 @@ namespace DualScreenDemo if (isOnOrderedSongsPage) { vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); - vodButton.MouseEnter += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); ; - vodButton.MouseLeave += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); ; - vodButton.MouseDown += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); ; - vodButton.MouseUp += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); ; + vodButton.MouseEnter += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); + vodButton.MouseLeave += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); + vodButton.MouseDown += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); + vodButton.MouseUp += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["DelBtn"])); + } + else + { + vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["Request"])); + vodButton.MouseEnter += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["Request"])); + vodButton.MouseLeave += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["Request"])); + vodButton.MouseDown += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["Request"])); + vodButton.MouseUp += (sender, e) => vodButton.BackgroundImage = new Bitmap(Path.Combine(serverPath, data["SongOrderPanel"]["Request"])); } } @@ -2168,7 +2194,7 @@ namespace DualScreenDemo // 添加載入按鈕圖片的方法 private Image LoadButtonImage(string imageName) { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); try { @@ -2326,7 +2352,7 @@ namespace DualScreenDemo private IniData LoadBtnConfigData() { var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(serverPath, "img.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); // 使用 UTF-8 讀取 INI 檔案並解析內容 diff --git a/VideoPlayerForm.cs b/VideoPlayerForm.cs index dc303a9..5612b08 100644 --- a/VideoPlayerForm.cs +++ b/VideoPlayerForm.cs @@ -321,11 +321,12 @@ namespace DualScreenDemo string pathToPlay = song.getFile(); // 渲染媒體文件 secondary.LoadMedia(pathToPlay,song.isPublicSong ? 0 : 1); + secondary.Mute(isMuted); secondary.PlayAsync(); - // 音量處理 - SetVolume(isMuted ? 0 : previousVolume); - + //SetVolume(isMuted ? 0 : previousVolume); + + SetVolume(100+song.getBasic().getDbChange()); if (isSyncToPrimaryMonitor) SyncToPrimaryMonitor(); return Task.CompletedTask; } diff --git a/img.ini b/img.ini new file mode 100644 index 0000000..65e4394 --- /dev/null +++ b/img.ini @@ -0,0 +1,1146 @@ +[PrimaryFormBtn] +AlertNormal=themes\superstar\button\1.主類別\主類別上方_新歌快報(未按).png +AlertActive=themes\superstar\button\1.主類別\主類別上方_新歌快報(已按).png + +HotNormal=themes\superstar\button\1.主類別\主類別上方_熱門排行(未按).png +HotActive=themes\superstar\button\1.主類別\主類別上方_熱門排行(已按).png + +SingerNormal=themes\superstar\button\1.主類別\主類別上方_歌星查詢(未按).png +SingerActive=themes\superstar\button\1.主類別\主類別上方_歌星查詢(已按).png + +SongNormal=themes\superstar\button\1.主類別\主類別上方_歌名查詢(未按).png +SongActive=themes\superstar\button\1.主類別\主類別上方_歌名查詢(已按).png + +LangNormal=themes\superstar\button\1.主類別\主類別上方_語別查詢(未按).png +LangActive=themes\superstar\button\1.主類別\主類別上方_語別查詢(已按).png + +GroupNormal=themes\superstar\button\1.主類別\主類別上方_合唱查詢(未按).png +GroupActive=themes\superstar\button\1.主類別\主類別上方_合唱查詢(已按).png + +CategNormal=themes\superstar\button\1.主類別\主類別上方_類別查詢(未按).png +CategActive=themes\superstar\button\1.主類別\主類別上方_類別查詢(已按).png + +OrderSongNormal=themes\superstar\button\1.主類別\主類別上方_已點歌曲(未按).png +OrderSongActive=themes\superstar\button\1.主類別\主類別上方_已點歌曲(已按).png + +FavoriteNormal=themes\superstar\button\1.主類別\主類別上方_我的最愛(未按).png +FavoriteActive=themes\superstar\button\1.主類別\主類別上方_我的最愛(已按).png + +PromotNormal=themes\superstar\button\1.主類別\主類別上方_優惠活動(未按).png +PromotActive=themes\superstar\button\1.主類別\主類別上方_優惠活動(已按).png + +FoodNormal=themes\superstar\button\1.主類別\主類別上方_美味菜單(未按).png +FoodActive=themes\superstar\button\1.主類別\主類別上方_美味菜單(已按).png + +BellNormal=themes\superstar\button\1.主類別\主類別上方_服務鈴(未按).png +BellActive=themes\superstar\button\1.主類別\主類別上方_服務鈴(已按).png + +MainFrameWSubBtn=themes\superstar\主畫面\0.下方選單_主畫面.jpg + +MainFrameBtnPressed=themes\superstar\主畫面\0.主選單_已按.jpg + +Close=themes\superstar\主畫面\選單內介面_送客畫面.jpg + +Voice=themes\superstar\button\3.介面\其他符號_人聲.png + + +[PrimaryFormSubBtn] + +MobileOrder=themes\superstar\button\1.主類別\主類別上方_手機點歌.png + +QieGe=themes\superstar\button\1.主類別\主類別下方_切歌.png + +MusicGainNormal=themes\superstar\button\1.主類別\主類別下方_音樂+.png +MusicGainActive=themes\superstar\button\1.主類別\音樂及麥克風icon_音樂++.png + +MusicLowNormal=themes\superstar\button\1.主類別\主類別下方_音樂-.png +MusicLowActive=themes\superstar\button\1.主類別\音樂及麥克風icon_音樂--.png + +MiPhoneGainNormal=themes\superstar\button\1.主類別\主類別下方_麥克風+.png +MiPhoneGainActive=themes\superstar\button\1.主類別\音樂及麥克風icon_麥克風++.png + +MiPhoneLowNormal=themes\superstar\button\1.主類別\主類別下方_麥克風-.png +MiPhoneLowActive=themes\superstar\button\1.主類別\音樂及麥克風icon_麥克風--.png + +OriginalSound=themes\superstar\button\1.主類別\主類別下方_原唱.png + +Replay=themes\superstar\button\1.主類別\主類別下方_重唱.png + +Pause=themes\superstar\button\1.主類別\主類別下方_暫停.png + +Play=themes\superstar\button\1.主類別\主類別下方_暫停.png + +Mute=themes\superstar\button\1.主類別\主類別下方_靜音.png + +MaleTone=themes\superstar\button\1.主類別\主類別下方_男調.png + +FemaleTone=themes\superstar\button\1.主類別\主類別下方_女調.png + +StandardTone=themes\superstar\button\1.主類別\主類別下方_標準調.png + +SoundEffect=themes\superstar\button\1.主類別\主類別下方_音效.png + +HigherTone=themes\superstar\button\1.主類別\主類別下方_升調.png + +LowerTone=themes\superstar\button\1.主類別\主類別下方_降調.png + +ScreenSync=themes\superstar\button\1.主類別\主類別下方_同步畫面.png + +LightControl=themes\superstar\button\1.主類別\主類別下方_燈光控制.png + +PrePage=themes\superstar\button\1.主類別\主類別下方_上一頁.png + +Exit=themes\superstar\button\1.主類別\主類別下方_退出.png + +NextPage=themes\superstar\button\1.主類別\主類別下方_下一頁.png + +Appaulse=themes\superstar\button\1.主類別\主類別下方_掌聲.png + +Simplified=themes\superstar\button\1.主類別\主類別下方_簡體.png + +Traditional=themes\superstar\button\1.主類別\主類別下方_繁體.png + + +[CategorySubBtn] + +LoveDuetNormal=themes\superstar\button\2.次類別\7.類別查詢_男女情歌(未按).png +LoveDuetActive=themes\superstar\button\2.次類別\7.類別查詢_男女情歌(已按).png + +TalentNormal=themes\superstar\button\2.次類別\7.類別查詢_選秀節目(未按).png +TalentActive=themes\superstar\button\2.次類別\7.類別查詢_選秀節目(已按).png + +MedleyNormal=themes\superstar\button\2.次類別\7.類別查詢_串燒舞曲(未按).png +MedleyActive=themes\superstar\button\2.次類別\7.類別查詢_串燒舞曲(已按).png + +NintiesNormail=themes\superstar\button\2.次類別\7.類別查詢_90年代(未按).png +NintiesActive=themes\superstar\button\2.次類別\7.類別查詢_90年代(已按).png + +NostalgicNormal=themes\superstar\button\2.次類別\7.類別查詢_懷舊老歌(未按).png +NostalgicActive=themes\superstar\button\2.次類別\7.類別查詢_懷舊老歌(已按).png + +ChinaNormal=themes\superstar\button\2.次類別\7.類別查詢_中國大陸(未按).png +ChinaActive=themes\superstar\button\2.次類別\7.類別查詢_中國大陸(已按).png + +VietNormal=themes\superstar\button\2.次類別\7.類別查詢_越南歌曲(未按).png +VietActive=themes\superstar\button\2.次類別\7.類別查詢_越南歌曲(已按).png + + + +[GroupSubBtn] + +GuoYuNormal=themes\superstar\button\2.次類別\6.團體查詢_國語(未按).png +GuoYuActive=themes\superstar\button\2.次類別\6.團體查詢_國語(已按).png + +TaiYuNormal=themes\superstar\button\2.次類別\6.團體查詢_台語(未按).png +TaiYuActive=themes\superstar\button\2.次類別\6.團體查詢_台語(已按).png + +YueYuNormal=themes\superstar\button\2.次類別\6.團體查詢_粵語(未按).png +YueYuActive=themes\superstar\button\2.次類別\6.團體查詢_粵語(已按).png + +YingWenNormal=themes\superstar\button\2.次類別\6.團體查詢_英語(未按).png +YingWenActive=themes\superstar\button\2.次類別\6.團體查詢_英語(已按).png + +RiYuNormal=themes\superstar\button\2.次類別\6.團體查詢_日語(未按).png +RiYuActive=themes\superstar\button\2.次類別\6.團體查詢_日語(已按).png + +HanYuNormal=themes\superstar\button\2.次類別\6.團體查詢_韓語(未按).png +HanYuActive=themes\superstar\button\2.次類別\6.團體查詢_韓語(已按).png + + +[HotSongSubBtn] + +GuoYuNewNormal=themes\superstar\button\2.次類別\2.熱門排行_國語新歌排行(未按).png +GuoYuNewActive=themes\superstar\button\2.次類別\2.熱門排行_國語新歌排行(已按).png + +TaiYuNewNormal=themes\superstar\button\2.次類別\2.熱門排行_台語新歌排行(未按).png +TaiYuNewActive=themes\superstar\button\2.次類別\2.熱門排行_台語新歌排行(已按).png + +TaiYuHotNormal=themes\superstar\button\2.次類別\2.熱門排行_台語人氣排行(未按).png +TaiYuHotActive=themes\superstar\button\2.次類別\2.熱門排行_台語人氣排行(已按).png + +GuoYuHotNormal=themes\superstar\button\2.次類別\2.熱門排行_國語人氣排行(未按).png +GuoYuHotActive=themes\superstar\button\2.次類別\2.熱門排行_國語人氣排行(已按).png + +EngHotNormal=themes\superstar\button\2.次類別\2.熱門排行_英語人氣排行(未按).png +EngHotActive=themes\superstar\button\2.次類別\2.熱門排行_英語人氣排行(已按).png + +JapHotNormal=themes\superstar\button\2.次類別\2.熱門排行_日語人氣排行(未按).png +JapHotActive=themes\superstar\button\2.次類別\2.熱門排行_日語人氣排行(已按).png + +KrHotNormal=themes\superstar\button\2.次類別\2.熱門排行_韓語人氣排行(未按).png +KrHotActive=themes\superstar\button\2.次類別\2.熱門排行_韓語人氣排行(已按).png + + +[LangSearchSubBtn] + +GuoYuLangNormal=themes\superstar\button\2.次類別\5.語別查詢_國語(未按).png +GuoYuLangActive=themes\superstar\button\2.次類別\5.語別查詢_國語(已按).png + +TaiYuLangNormal=themes\superstar\button\2.次類別\5.語別查詢_台語(未按).png +TaiYuLangActive=themes\superstar\button\2.次類別\5.語別查詢_台語(已按).png + +YueYuLangNormal=themes\superstar\button\2.次類別\5.語別查詢_粵語(未按).png +YueYuLangActive=themes\superstar\button\2.次類別\5.語別查詢_粵語(已按).png + +EngLangNormal=themes\superstar\button\2.次類別\5.語別查詢_英語(未按).png +EngLangActive=themes\superstar\button\2.次類別\5.語別查詢_英語(已按).png + +JapLangNormal=themes\superstar\button\2.次類別\5.語別查詢_日語(未按).png +JapLangActive=themes\superstar\button\2.次類別\5.語別查詢_日語(已按).png + +KrLangNormal=themes\superstar\button\2.次類別\5.語別查詢_韓語(未按).png +KrLangActive=themes\superstar\button\2.次類別\5.語別查詢_韓語(已按).png + +KeYuLangNormal=themes\superstar\button\2.次類別\5.語別查詢_客語(未按).png +KeYuLangActive=themes\superstar\button\2.次類別\5.語別查詢_客語(已按).png + + + +[NewSongAlertBtn] + +GuoYuNewNormal=themes\superstar\button\2.次類別\1.新歌快報_國語(未按).png +GuoYuNewActive=themes\superstar\button\2.次類別\1.新歌快報_國語(已按).png + +TaiYuNewNormal=themes\superstar\button\2.次類別\1.新歌快報_台語(未按).png +TaiYuNewActive=themes\superstar\button\2.次類別\1.新歌快報_台語(已按).png + +YueYuNewNormal=themes\superstar\button\2.次類別\1.新歌快報_粵語(未按).png +YueYuNewActive=themes\superstar\button\2.次類別\1.新歌快報_粵語(已按).png + +EngNewNormal=themes\superstar\button\2.次類別\1.新歌快報_英語(未按).png +EngNewActive=themes\superstar\button\2.次類別\1.新歌快報_英語(已按).png + +JapNewNormal=themes\superstar\button\2.次類別\1.新歌快報_日語(未按).png +JapNewActive=themes\superstar\button\2.次類別\1.新歌快報_日語(已按).png + +KrNewNormal=themes\superstar\button\2.次類別\1.新歌快報_韓語(未按).png +KrNewActive=themes\superstar\button\2.次類別\1.新歌快報_韓語(已按).png + + +[SingerSearch] + +ZhuYinSingerNormal=themes\superstar\button\2.次類別\3.歌星查詢_注音查詢(未按).png +ZhuYinSingerActive=themes\superstar\button\2.次類別\3.歌星查詢_注音查詢(已按).png + +EngSingerNormal=themes\superstar\button\2.次類別\3.歌星查詢_英文查詢(未按).png +EngSingerActive=themes\superstar\button\2.次類別\3.歌星查詢_英文查詢(已按).png + +PinYinSingerNormal=themes\superstar\button\2.次類別\3.歌星查詢_拼音查詢(未按).png +PinYinSingerActive=themes\superstar\button\2.次類別\3.歌星查詢_拼音查詢(已按).png + +WordCntSingerNormal=themes\superstar\button\2.次類別\3.歌星查詢_字數查詢(未按).png +WordCntSingerActive=themes\superstar\button\2.次類別\3.歌星查詢_字數查詢(已按).png + +HWritingSingerNormal=themes\superstar\button\2.次類別\3.歌星查詢_手寫查詢(未按).png +HWritingSingerActive=themes\superstar\button\2.次類別\3.歌星查詢_手寫查詢(已按).png + + +[SongSearch] + +ZhuYinSongNormal=themes\superstar\button\2.次類別\4.歌名查詢_注音查詢(未按).png +ZhuYinSongActive=themes\superstar\button\2.次類別\4.歌名查詢_注音查詢(已按).png + +EngSongNormal=themes\superstar\button\2.次類別\4.歌名查詢_英文查詢(未按).png +EngSongActive=themes\superstar\button\2.次類別\4.歌名查詢_英文查詢(已按).png + +PinYingNormal=themes\superstar\button\2.次類別\4.歌名查詢_拼音查詢(未按).png +PinYingActive=themes\superstar\button\2.次類別\4.歌名查詢_拼音查詢(已按).png + +WordCntSongNormal=themes\superstar\button\2.次類別\4.歌名查詢_字數查詢(未按).png +WordCntSongActive=themes\superstar\button\2.次類別\4.歌名查詢_字數查詢(已按).png + +HWritingSongNormal=themes\superstar\button\2.次類別\4.歌名查詢_手寫查詢(未按).png +HWritingSongActive=themes\superstar\button\2.次類別\4.歌名查詢_手寫查詢(已按).png + +IDSearchNormal=themes\superstar\button\2.次類別\4.歌名查詢_編號查詢(未按).png +IDSearchActive=themes\superstar\button\2.次類別\4.歌名查詢_編號查詢(已按).png + + +[SongOrderPanel] + +UIBase=themes\superstar\button\3.介面\歌曲點播_空白介面.png + +Request=themes\superstar\button\3.介面\歌曲點播_點播.png + +Insert=themes\superstar\button\3.介面\歌曲點播_插播.png + +Discography=themes\superstar\button\3.介面\歌曲點播_歷年專輯.png + +Favorites=themes\superstar\button\3.介面\歌曲點播_我的最愛.png + +Exit=themes\superstar\button\3.介面\歌曲點播_關閉.png + +DelBtn=themes\superstar\button\3.介面\歌曲點播-08.png + + +[PromoFood] + +PrePage=themes\superstar\button\3.介面\切換頁面_上一頁.png + +Exit=themes\superstar\button\3.介面\切換頁面_退出.png + +NextPage=themes\superstar\button\3.介面\切換頁面_下一頁.png + + +[SoundEffect] + +ConstruSite=themes\superstar\button\3.介面\場景音效_工地.png + +Market=themes\superstar\button\3.介面\場景音效_市場.png + +Drive=themes\superstar\button\3.介面\場景音效_開車.png + +Airport=themes\superstar\button\3.介面\場景音效_機場.png + +Office=themes\superstar\button\3.介面\場景音效_辦公室.png + +Close=themes\superstar\button\3.介面\場景音效_關閉.png + +SoundEffectBaseUI=themes\superstar\button\3.介面\場景音效_空白介面.png + + +[LightControl] + +OnOff=themes\\superstar\\button\\3.介面\\燈光控制_ON-OFF.png + +Brightness=themes\\superstar\\button\\3.介面\\燈光控制_明亮.png + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[ImagePaths] +ZhuYinSingers = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_背景.png +EnglishSingers = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_背景.png +PinYinSingers = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_背景.png +HandWritingSingers = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_未按.png +ZhuYinSongs = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(注音按鍵)_背景.png +EnglishSongs = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(英文按鍵)_背景.png +PinYinSongs = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(拼音按鍵)_背景.png +HandWritingSongs = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_未按.png +WordCountSongs = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_背景.png +WordCountSingers = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(字數按鍵)_背景.png +SongIDSearch = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_背景.png + +[PictureBoxZhuYinSingers] +X = 390 +Y = 354 +Width = 808 +Height = 356 + +[PictureBoxEnglishSingers] +X = 390 +Y = 350 +Width = 808 +Height = 356 + +[PictureBoxPinYinSingers] +X = 390 +Y = 350 +Width = 808 +Height = 356 + +[PictureBoxZhuYinSongs] +X = 390 +Y = 350 +Width = 808 +Height = 356 + +[PictureBoxEnglishSongs] +X = 390 +Y = 350 +Width = 808 +Height = 356 + +[PictureBoxPinYinSongs] +X = 390 +Y = 350 +Width = 808 +Height = 356 + +[PhoneticSymbols] +Symbols=ㄅ,ㄉ,ㄍ,ㄐ,ㄓ,ㄗ,ㄛ,ㄡ,ㄤ,ㄧ,ㄆ,ㄊ,ㄎ,ㄑ,ㄔ,ㄘ,ㄜ,ㄢ,ㄦ,ㄨ,ㄇ,ㄋ,ㄏ,ㄒ,ㄕ,ㄙ,ㄞ,ㄣ,ㄩ,ㄈ,ㄌ, ,ㄖ,ㄚ,ㄠ + +[PhoneticButtonCoordinates] +button0 = 341,418,71,66 +button1 = 406,418,71,66 +button2 = 484,418,71,66 +button3 = 562,418,71,66 +button4 = 640,418,71,66 +button5 = 718,417,71,66 +button6 = 795,418,71,66 +button7 = 873,418,71,66 +button8 = 951,418,71,66 +button9 = 1030,418,71,66 +button10 = 1109,418,71,66 +button11 = 406,489,71,66 +button12 = 484,489,71,66 +button13 = 562,489,71,66 +button14 = 640,489,71,66 +button15 = 718,489,71,66 +button16 = 795,489,71,66 +button17 = 873,489,71,66 +button18 = 951,489,71,66 +button19 = 1030,489,71,66 +button20 = 1109,489,71,66 +button21 = 446,561,71,66 +button22 = 524,561,71,66 +button23 = 602,561,71,66 +button24 = 680,561,71,66 +button25 = 758,561,71,66 +button26 = 836,561,71,66 +button27 = 914,561,71,66 +button28 = 992,561,71,66 +button29 = 1070,561,71,66 +button30 = 484,632,71,66 +button31 = 562,632,71,66 +button32 = 640,632,153,66 +button33 = 800,632,71,66 +button34 = 878,632,71,66 +button35 = 956,632,71,66 + +[SpecialButtonCoordinates] +modifyButtonZhuYinSingers = 1034,632,71,66 +clearButtonZhuYinSingers = 409,632,71,66 +closeButtonZhuYinSingers = 1112,632,71,66 +modifyButtonZhuYinSongs =1035,632,71,66 +clearButtonZhuYinSongs = 408,632,71,66 +closeButtonZhuYinSongs = 1114,632,71,66 +modifyButtonEnglishSingers = 1032,633,70,66 +clearButtonEnglishSingers = 408,633,70,66 +closeButtonEnglishSingers = 1110,633,70,66 +modifyButtonPinYinSingers = 1032,612,70,84 +clearButtonPinYinSingers = 408,612,70,84 +closeButtonPinYinSingers = 1110,612,70,84 +refillButtonHandWritingSingers = 916,372,70,65 +clearButtonHandWritingSingers = 993,372,70,65 +closeButtonForSingers = 1070,372,70,65 +modifyButtonEnglishSongs = 1032,633,70,66 +clearButtonEnglishSongs = 408,633,70,66 +closeButtonEnglishSongs = 1110,633,70,66 +modifyButtonPinYinSongs = 1032,612,70,84 +clearButtonPinYinSongs = 408,612,70,84 +closeButtonPinYinSongs = 1110,612,70,84 +refillButtonHandWritingSongs = 916,372,70,65 +clearButtonHandWritingSongs = 993,372,70,65 +closeButtonForSongs = 1070,372,70,65 +modifyButtonWordCountSongs = 926,624,72,67 +clearButtonWordCountSongs = 845,624,72,67 +enterButtonWordCountSongs=1007,624,72,67 +closeButtonWordCountSongs = 1088,624,72,67 +modifyButtonWordCountSingers = 926,624,72,67 +clearButtonWordCountSingers = 845,624,72,67 +enterButtonWordCountSingers=1007,624,72,67 +closeButtonWordCountSingers = 1088,624,72,67 +modifyButtonSongIDSearch = 826,626,94,87 +clearButtonSongIDSearch = 721,626,93,87 +closeButtonSongIDSearch = 1038,626,94,87 +enterButtonSongIDSearch = 931,626,94,87 + +[ModifyButtonImagesZhuYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_←.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_←.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_← 複本.png + +[ClearButtonImagesZhuYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_重填 複本.png + +[CloseButtonImagesZhuYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_關閉 複本.png + +[InputBoxZhuYinSingers] + +X = 408 +Y = 361 +Width = 444 +Height = 47 +FontName = 微軟正黑體 +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[PhoneticButtonImages] +button0_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄅ.png +button0_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄅ 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄅ.png +button1_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄉ.png +button1_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄉ 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄉ.png +button2_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄍ.png +button2_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄍ 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄍ.png +button3_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄐ.png +button3_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄐ 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄐ.png +button4_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄓ.png +button4_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄓ 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄓ.png +button5_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄗ.png +button5_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄗ 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄗ.png +button6_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄛ.png +button6_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄛ 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄛ.png +button7_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄡ.png +button7_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄡ 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄡ.png +button8_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄤ.png +button8_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄤ 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄤ.png +button9_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄧ.png +button9_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄧ 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄧ.png +button10_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄆ.png +button10_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄆ 複本.png +button10_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄆ.png +button11_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄊ.png +button11_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄊ 複本.png +button11_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄊ.png +button12_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄎ.png +button12_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄎ 複本.png +button12_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄎ.png +button13_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄑ.png +button13_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄑ 複本.png +button13_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄑ.png +button14_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄔ.png +button14_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄔ 複本.png +button14_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄔ.png +button15_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄘ.png +button15_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄘ 複本.png +button15_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄘ.png +button16_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄜ.png +button16_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄜ 複本.png +button16_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄜ.png +button17_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄢ.png +button17_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄢ 複本.png +button17_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄢ.png +button18_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄦ.png +button18_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄦ 複本.png +button18_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄦ.png +button19_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄨ.png +button19_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄨ 複本.png +button19_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄨ.png +button20_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄇ.png +button20_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄇ 複本.png +button20_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄇ.png +button21_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄋ.png +button21_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄋ 複本.png +button21_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄋ.png +button22_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄏ.png +button22_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄏ 複本.png +button22_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄏ.png +button23_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄒ.png +button23_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄒ 複本.png +button23_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄒ.png +button24_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄕ.png +button24_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄕ 複本.png +button24_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄕ.png +button25_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄙ.png +button25_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄙ 複本.png +button25_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄙ.png +button26_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄞ.png +button26_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄞ 複本.png +button26_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄞ.png +button27_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄣ.png +button27_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄣ 複本.png +button27_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄣ.png +button28_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄩ.png +button28_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄩ 複本.png +button28_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄩ.png +button29_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄈ.png +button29_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄈ 複本.png +button29_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄈ.png +button30_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄌ.png +button30_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄌ 複本.png +button30_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄌ.png +button31_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_logo.png +button31_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_logo 複本.png +button31_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_logo.png +button32_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄖ.png +button32_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄖ 複本.png +button32_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄖ.png +button33_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄚ.png +button33_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄚ 複本.png +button33_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄚ.png +button34_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄠ.png +button34_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄠ 複本.png +button34_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(注音按鍵)_ㄠ.png + +[NumberButtonCoordinates] +button1 = 408,418,70,66 +button2 = 486,418,70,66 +button3 = 564,418,70,66 +button4 = 642,418,70,66 +button5 = 720,417,70,66 +button6 = 798,418,70,66 +button7 = 876,418,70,66 +button8 = 954,418,70,66 +button9 = 1033,418,70,66 +button10 = 1111,418,70,66 + +[NumberButtonImages] +button0_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_1.png +button0_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_1 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_1.png +button1_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_2.png +button1_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_2 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_2.png +button2_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_3.png +button2_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_3 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_3.png +button3_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_4.png +button3_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_4 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_4.png +button4_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_5.png +button4_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_5 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_5.png +button5_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_6.png +button5_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_6 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_6.png +button6_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_7.png +button6_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_7 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_7.png +button7_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_8.png +button7_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_8 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_8.png +button8_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_9.png +button8_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_9 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_9.png +button9_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_0.png +button9_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_0 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_0.png + +[EnglishLetterButtonCoordinates] +button0 = 408,490,70,66 +button1 = 486,490,70,66 +button2 = 564,490,70,66 +button3 = 642,490,70,66 +button4 = 720,489,70,66 +button5 = 798,490,70,66 +button6 = 876,490,70,66 +button7 = 954,490,70,66 +button8 = 1033,490,70,66 +button9 = 1111,490,70,66 +button10 = 449,561,70,66 +button11 = 527,561,70,66 +button12 = 605,561,70,66 +button13 = 683,561,70,66 +button14 = 761,561,70,66 +button15 = 839,561,70,66 +button16 = 917,561,70,66 +button17 = 995,561,70,66 +button18 = 1073,561,70,66 +button19 = 486,633,70,66 +button20 = 564,633,70,66 +button21 = 642,633,70,66 +button22 = 720,634,70,66 +button23 = 798,633,70,66 +button24 = 876,633,70,66 +button25 = 954,633,70,66 + +[EnglishLetterButtonImages] +button0_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Q.png +button0_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Q 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Q.png +button1_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_W.png +button1_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_W 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_W.png +button2_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_E.png +button2_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_E 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_E.png +button3_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_R.png +button3_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_R 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_R.png +button4_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_T.png +button4_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_T 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_T.png +button5_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Y.png +button5_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Y 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Y.png +button6_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_U.png +button6_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_U 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_U.png +button7_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_I.png +button7_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_I 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_I.png +button8_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_O.png +button8_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_O 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_O.png +button9_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_P.png +button9_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_P 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_P.png +button10_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_A.png +button10_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_A 複本.png +button10_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_A.png +button11_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_S.png +button11_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_S 複本.png +button11_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_S.png +button12_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_D.png +button12_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_D 複本.png +button12_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_D.png +button13_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_F.png +button13_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_F 複本.png +button13_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_F.png +button14_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_G.png +button14_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_G 複本.png +button14_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_G.png +button15_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_H.png +button15_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_H 複本.png +button15_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_H.png +button16_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_J.png +button16_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_J 複本.png +button16_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_J.png +button17_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_K.png +button17_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_K 複本.png +button17_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_K.png +button18_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_L.png +button18_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_L 複本.png +button18_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_L.png +button19_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Z.png +button19_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Z 複本.png +button19_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_Z.png +button20_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_X.png +button20_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_X 複本.png +button20_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_X.png +button21_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_C.png +button21_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_C 複本.png +button21_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_C.png +button22_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_V.png +button22_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_V 複本.png +button22_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_V.png +button23_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_B.png +button23_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_B 複本.png +button23_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_B.png +button24_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_N.png +button24_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_N 複本.png +button24_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_N.png +button25_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_M.png +button25_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_M 複本.png +button25_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_M.png + +[ModifyButtonImagesEnglish] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_←.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_←.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_← 複本.png + +[ClearButtonImagesEnglish] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_重填 複本.png + +[CloseButtonImagesEnglish] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_關閉 複本.png + +[InputBoxEnglishSingers] +X = 408 +Y = 361 +Width = 444 +Height = 47 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[PinYinLetterButtonCoordinates] +button0 = 408,438,70,82 +button1 = 486,438,70,82 +button2 = 564,438,70,82 +button3 = 642,438,70,82 +button4 = 720,438,70,82 +button5 = 798,438,70,82 +button6 = 876,438,70,82 +button7 = 954,438,70,82 +button8 = 1032,438,70,82 +button9 = 1110,438,70,82 +button10 = 447,526,70,82 +button11 = 525,526,70,82 +button12 = 603,526,70,82 +button13 = 681,526,70,82 +button14 = 759,526,70,82 +button15 = 837,526,70,82 +button16 = 915,526,70,82 +button17 = 993,526,70,82 +button18 = 1071,526,70,82 +button19 = 486,614,70,82 +button20 = 564,614,70,82 +button21 = 642,614,70,82 +button22 = 720,614,70,82 +button23 = 798,614,70,82 +button24 = 876,614,70,82 +button25 = 954,614,70,82 + +[PinYinLetterButtonImages] +button0_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Q.png +button0_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Q 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Q.png +button1_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_W.png +button1_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_W 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_W.png +button2_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_E.png +button2_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_E 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_E.png +button3_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_R.png +button3_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_R 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_R.png +button4_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_T.png +button4_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_T 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_T.png +button5_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Y.png +button5_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Y 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Y.png +button6_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_U.png +button6_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_U 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_U.png +button7_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_I.png +button7_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_I 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_I.png +button8_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_O.png +button8_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_O 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_O.png +button9_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_P.png +button9_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_P 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_P.png +button10_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_A.png +button10_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_A 複本.png +button10_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_A.png +button11_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_S.png +button11_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_S 複本.png +button11_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_S.png +button12_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_D.png +button12_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_D 複本.png +button12_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_D.png +button13_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_F.png +button13_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_F 複本.png +button13_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_F.png +button14_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_G.png +button14_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_G 複本.png +button14_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_G.png +button15_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_H.png +button15_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_H 複本.png +button15_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_H.png +button16_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_J.png +button16_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_J 複本.png +button16_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_J.png +button17_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_K.png +button17_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_K 複本.png +button17_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_K.png +button18_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_L.png +button18_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_L 複本.png +button18_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_L.png +button19_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Z.png +button19_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Z 複本.png +button19_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_Z.png +button20_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_X.png +button20_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_X 複本.png +button20_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_X.png +button21_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_C.png +button21_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_C 複本.png +button21_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_C.png +button22_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_V.png +button22_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_V 複本.png +button22_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_V.png +button23_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_B.png +button23_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_B 複本.png +button23_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_B.png +button24_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_N.png +button24_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_N 複本.png +button24_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_N.png +button25_normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_M.png +button25_mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_M 複本.png +button25_mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_M.png + +[ModifyButtonImagesPinYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_←.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_←.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(英文按鍵)_← 複本.png + +[ClearButtonImagesPinYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_重填 複本.png + +[CloseButtonImagesPinYin] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(拼音按鍵)_關閉 複本.png + +[InputBoxPinYinSingers] +X = 408 +Y = 371 +Width = 444 +Height = 57 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[RefillButtonImagesHandWriting] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_重填 複本.png + +[ClearButtonImagesHandWriting] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_清除.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_清除.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_清除 複本.png + +[CloseButtonImagesHandWriting] +normal = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\3.歌星查詢按鍵\3.歌星查詢(手寫按鍵)_關閉 複本.png + +[InputBoxZhuYinSongs] +X=150 +Y=264 +Width=596 +Height=63 +FontName=微軟正黑體 +FontSize=26 +FontStyle=Bold +ForeColor=Black + +[InputBoxEnglishSongs] +X = 408 +Y = 361 +Width = 444 +Height = 47 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[InputBoxPinYinSongs] +X = 408 +Y = 371 +Width = 444 +Height = 57 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[PictureBoxWordCountSongs] +X = 790 +Y = 350 +Width = 420 +Height = 350 + +[InputBoxWordCountSongs] +X = 800 +Y = 405 +Width = 400 +Height = 60 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[NumberWordCountSymbols] +Symbols=1,2,3,4,5,6,7,8,9,0 + +[NumberWordCountButtonCoordinates] +button0 = 650,420,70,65 +button1 = 804,474,72,67 +button2 = 886,474,72,67 +button3 = 965,474,73,67 +button4 = 1048,474,72,67 +button5 = 1129,474,72,67 +button6 = 804,548,72,67 +button7 = 886,548,72,67 +button8 = 965,548,73,67 +button9 = 1048,548,72,67 +button10 = 1129,548,72,67 + +[NumberWordCountButtonImages] +button0_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_1.png +button0_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_1 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_1.png +button1_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_2.png +button1_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_2 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_2.png +button2_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_3.png +button2_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_3 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_3.png +button3_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_4.png +button3_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_4 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_4.png +button4_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_5.png +button4_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_5 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_5.png +button5_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_6.png +button5_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_6 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_6.png +button6_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_7.png +button6_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_7 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_7.png +button7_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_8.png +button7_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_8 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_8.png +button8_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_9.png +button8_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_9 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_9.png +button9_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_0.png +button9_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_0 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_0.png + +[ModifyButtonImagesWordCount] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_清除.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_清除.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_清除 複本.png + +[ClearButtonImagesWordCount] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_重填 複本.png + +[CloseButtonImagesWordCount] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(手寫按鍵)_關閉 複本.png + +[EnterButtonImagesWordCount] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_確認.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_確認.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(字數按鍵)_確認 複本.png + +[PictureBoxSongIDSearch] +X = 645 +Y = 280 +Width = 554 +Height = 442 + +[InputBoxSongIDSearch] +X = 660 +Y = 360 +Width = 528 +Height = 63 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[NumberSongIDSymbols] +Symbols=1,2,3,4,5,6,7,8,9,0 + +[NumberSongIDButtonCoordinates] +button0 = 652,550,94,87 +button1 = 665,435,94,87 +button2 = 771,435,94,87 +button3 = 879,435,94,87 +button4 = 985,435,94,87 +button5 = 1092,435,94,87 +button6 = 665,532,94,87 +button7 = 772,532,94,87 +button8 = 879,532,94,87 +button9 = 985,532,94,87 +button10 = 1092,532,94,87 + +[NumberSongIDButtonImages] +button0_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_1.png +button0_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_1 複本.png +button0_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_1.png +button1_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_2.png +button1_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_2 複本.png +button1_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_2.png +button2_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_3.png +button2_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_3 複本.png +button2_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_3.png +button3_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_4.png +button3_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_4 複本.png +button3_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_4.png +button4_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_5.png +button4_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_5 複本.png +button4_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_5.png +button5_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_6.png +button5_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_6 複本.png +button5_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_6.png +button6_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_7.png +button6_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_7 複本.png +button6_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_7.png +button7_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_8.png +button7_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_8 複本.png +button7_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_8.png +button8_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_9.png +button8_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_9 複本.png +button8_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_9.png +button9_normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_0.png +button9_mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_0 複本.png +button9_mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_0.png + +[ModifyButtonImagesSongID] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_清除.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_清除.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_清除 複本.png + +[ClearButtonImagesSongID] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_重填.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_重填.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_重填 複本.png + +[CloseButtonImagesSongID] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_關閉.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_關閉.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_關閉 複本.png + +[EnterButtonImagesSongID] +normal = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_確認.png +mouseOver = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_確認.png +mouseDown = themes\superstar\button\4.查詢\4.歌名查詢按鍵\4.歌名查詢(編號按鍵)_確認 複本.png + +[PictureBoxWordCountSingers] +X = 790 +Y = 350 +Width = 420 +Height = 350 + +[InputBoxWordCountSingers] +X = 800 +Y = 405 +Width = 400 +Height = 60 +FontName = Times New Roman +FontSize = 26 +FontStyle = Regular +ForeColor = Black + +[ImageSrc] +path=\\sshost\KTVSuperstar \ No newline at end of file