From 60b6b30798c0add5143efac07e3da66eba3ec0a2 Mon Sep 17 00:00:00 2001 From: jasonchenwork Date: Wed, 13 Aug 2025 14:07:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=AC=E5=9C=B0config.ini=E5=88=AA=E9=99=A4,?= =?UTF-8?q?=E5=90=88=E4=BD=B5=E8=87=B3img.ini?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PrimaryFormParts/PrimaryForm.Favorite.cs | 4 +- .../PrimaryForm.MultiPagePanel.cs | 12 - PrimaryFormParts/PrimaryForm.QRCode.cs | 2 +- PrimaryFormParts/PrimaryForm.SyncScreen.cs | 2 +- PrimaryFormParts/PrimaryForm.cs | 17 - ...PrimaryForm.SingerSearch.BopomofoSearch.cs | 33 +- .../PrimaryForm.SingerSearch.EnglishSearch.cs | 18 +- ...maryForm.SingerSearch.HandwritingSearch.cs | 8 +- .../PrimaryForm.SingerSearch.PinyinSearch.cs | 14 +- ...rimaryForm.SingerSearch.WordCountSearch.cs | 8 +- .../PrimaryForm.SongSearch.BopomofoSearch.cs | 12 +- .../PrimaryForm.SongSearch.EnglishSearch.cs | 16 +- ...rimaryForm.SongSearch.HandwritingSearch.cs | 8 +- .../PrimaryForm.SongSearch.NumberSearch.cs | 20 +- .../PrimaryForm.SongSearch.PinyinSearch.cs | 14 +- .../PrimaryForm.SongSearch.WordCountSearch.cs | 6 +- config.ini | 802 ------------------ 17 files changed, 74 insertions(+), 922 deletions(-) delete mode 100644 config.ini diff --git a/PrimaryFormParts/PrimaryForm.Favorite.cs b/PrimaryFormParts/PrimaryForm.Favorite.cs index 1392db0..1938a40 100644 --- a/PrimaryFormParts/PrimaryForm.Favorite.cs +++ b/PrimaryFormParts/PrimaryForm.Favorite.cs @@ -45,7 +45,7 @@ namespace DualScreenDemo favoriteNumberButton = new Button[10]; - var data=LoadConfigData(); + var data=LoadBtnConfigData(); for (int i = 0; i < favoriteNumberButton.Length; i++) { @@ -331,7 +331,7 @@ namespace DualScreenDemo private void MyFavoritesButton_Click(object sender, EventArgs e) { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); newSongAlertButton.BackgroundImage = newSongAlertNormalBackground; hotPlayButton.BackgroundImage = hotPlayNormalBackground; diff --git a/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs b/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs index 6a89e28..3f8a160 100644 --- a/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs +++ b/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs @@ -567,18 +567,6 @@ namespace DualScreenDemo songLabel.TextAlign = ContentAlignment.TopLeft; } - private IniData LoadConfigData() - { - var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); - - - // 使用 UTF-8 讀取 INI 檔案並解析內容 - using (var reader = new StreamReader(iniFilePath, Encoding.UTF8)) - { - return parser.ReadData(reader); - } - } string serverPath = Utils.Env.GetPath("", ""); } diff --git a/PrimaryFormParts/PrimaryForm.QRCode.cs b/PrimaryFormParts/PrimaryForm.QRCode.cs index 80b4d8f..fcca413 100644 --- a/PrimaryFormParts/PrimaryForm.QRCode.cs +++ b/PrimaryFormParts/PrimaryForm.QRCode.cs @@ -9,7 +9,7 @@ namespace DualScreenDemo public void OverlayQRCodeOnImage(string randomFolderPath) { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); try { diff --git a/PrimaryFormParts/PrimaryForm.SyncScreen.cs b/PrimaryFormParts/PrimaryForm.SyncScreen.cs index f6de636..3a7b71c 100644 --- a/PrimaryFormParts/PrimaryForm.SyncScreen.cs +++ b/PrimaryFormParts/PrimaryForm.SyncScreen.cs @@ -46,7 +46,7 @@ namespace DualScreenDemo this.videoPanel.TabIndex = 0; this.videoPanel.BorderStyle = BorderStyle.None; this.videoPanel.BackColor = System.Drawing.Color.Black; - var data=LoadConfigData(); + var data=LoadBtnConfigData(); // 同步畫面 服務鈴 ConfigureButton(this.syncServiceBellButton, 1240, 17, 161, 161, diff --git a/PrimaryFormParts/PrimaryForm.cs b/PrimaryFormParts/PrimaryForm.cs index 0d55e97..495fd94 100644 --- a/PrimaryFormParts/PrimaryForm.cs +++ b/PrimaryFormParts/PrimaryForm.cs @@ -2332,23 +2332,6 @@ namespace DualScreenDemo #endregion - /// - /// 從設定檔 (config.ini) 載入 INI 設定數據。 - /// - /// 回傳解析後的 INI 設定數據 (IniData)。 - private IniData LoadConfigData() - { - var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); - - - // 使用 UTF-8 讀取 INI 檔案並解析內容 - using (var reader = new StreamReader(iniFilePath, Encoding.UTF8)) - { - return parser.ReadData(reader); - } - } - private IniData LoadBtnConfigData() { var parser = new FileIniDataParser(); diff --git a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.BopomofoSearch.cs b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.BopomofoSearch.cs index e278189..d88d2ee 100644 --- a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.BopomofoSearch.cs +++ b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.BopomofoSearch.cs @@ -43,7 +43,7 @@ namespace DualScreenDemo UpdateButtonBackgrounds(zhuyinSearchButton, zhuyinSearchActiveBackground); // 載入設定檔,取得圖片路徑資訊 - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); // 取得「注音歌手圖片」的完整路徑 string imagePath = Path.Combine(serverPath, configData["ImagePaths"]["ZhuYinSingers"]); @@ -78,7 +78,7 @@ namespace DualScreenDemo var parser = new FileIniDataParser(); // 設定檔路徑 - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -98,23 +98,6 @@ namespace DualScreenDemo } - /// - /// 從設定檔 (config.ini) 載入 INI 設定數據。 - /// - /// 回傳解析後的 INI 設定數據 (IniData)。 - //private IniData LoadConfigData() - //{ - // var parser = new FileIniDataParser(); - // string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); - - - // // 使用 UTF-8 讀取 INI 檔案並解析內容 - // using (var reader = new StreamReader(iniFilePath, Encoding.UTF8)) - // { - // return parser.ReadData(reader); - // } - //} - /// /// 從 INI 設定數據中讀取注音符號 (Phonetic Symbols)。 /// @@ -227,7 +210,7 @@ namespace DualScreenDemo private void InitializePhoneticButtons() { // 載入配置資料 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 載入語音符號(如拼音、注音符號等) phoneticSymbols = LoadPhoneticSymbols(data); @@ -402,7 +385,7 @@ namespace DualScreenDemo private void InitializeModifyButtonZhuYinSingers() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 modifyButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonZhuYinSingers"); @@ -442,7 +425,7 @@ namespace DualScreenDemo private void InitializeClearButtonZhuYinSingers() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 clearButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonZhuYinSingers"); @@ -482,7 +465,7 @@ namespace DualScreenDemo private void InitializeCloseButtonZhuYinSingers() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 closeButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonZhuYinSingers"); @@ -634,7 +617,7 @@ namespace DualScreenDemo { // 創建 INI 解析器 var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -688,7 +671,7 @@ namespace DualScreenDemo private void LoadPictureBoxZhuYinSingerCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); var coords = data["PictureBoxZhuYinSingers"]; diff --git a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.EnglishSearch.cs b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.EnglishSearch.cs index f76a787..e3741a2 100644 --- a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.EnglishSearch.cs +++ b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.EnglishSearch.cs @@ -31,7 +31,7 @@ namespace DualScreenDemo bool shouldBeVisible = !pictureBoxEnglishSingers.Visible; - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string imagePath = Path.Combine(serverPath, configData["ImagePaths"]["EnglishSingers"]); ShowImageOnPictureBoxEnglishSingers(Path.Combine(serverPath, imagePath)); @@ -52,7 +52,7 @@ namespace DualScreenDemo private void LoadNumberButtonCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); @@ -94,7 +94,7 @@ namespace DualScreenDemo private void InitializeNumberButtonsForSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); numberButtonCoords = LoadButtonCoordinates(data, "NumberButtonCoordinates", 10); var buttonImages = LoadButtonImages(data, "NumberButtonImages", 10); @@ -141,7 +141,7 @@ namespace DualScreenDemo private void InitializeLetterButtonsForEnglishSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); var buttonImages = LoadButtonImages(data, "EnglishLetterButtonImages", 26); string qwertyLayout = "QWERTYUIOPASDFGHJKLZXCVBNM"; letterButtonsForEnglishSingers = new Button[26]; @@ -194,7 +194,7 @@ namespace DualScreenDemo private void InitializeModifyButtonEnglishSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); modifyButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonEnglishSingers"); var buttonImages = LoadButtonImages(data, "ModifyButtonImagesEnglish"); @@ -221,7 +221,7 @@ namespace DualScreenDemo private void InitializeClearButtonEnglishSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); clearButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonEnglishSingers"); var buttonImages = LoadButtonImages(data, "ClearButtonImagesEnglish"); @@ -247,7 +247,7 @@ namespace DualScreenDemo private void InitializeCloseButtonEnglishSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); closeButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonEnglishSingers"); var buttonImages = LoadButtonImages(data, "CloseButtonImagesEnglish"); @@ -297,7 +297,7 @@ namespace DualScreenDemo IniData data; - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } @@ -340,7 +340,7 @@ namespace DualScreenDemo IniData data; - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } diff --git a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.HandwritingSearch.cs b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.HandwritingSearch.cs index 729b0d6..bae66b2 100644 --- a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.HandwritingSearch.cs +++ b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.HandwritingSearch.cs @@ -34,7 +34,7 @@ namespace DualScreenDemo EnableDoubleBuffering(closeButtonForSingers); - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string handWritingImagePath = Path.Combine(serverPath, configData["ImagePaths"]["HandWritingSingers"]); ShowImageOnPictureBoxHandWritingSingers(Path.Combine(serverPath, handWritingImagePath)); @@ -216,7 +216,7 @@ namespace DualScreenDemo private void InitializeRefillButtonHandwritingSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); refillButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "refillButtonHandWritingSingers"); var buttonImages = LoadButtonImages(data, "RefillButtonImagesHandWriting"); @@ -237,7 +237,7 @@ namespace DualScreenDemo private void InitializeClearButtonHandWritingSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); clearButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonHandWritingSingers"); var buttonImages = LoadButtonImages(data, "ClearButtonImagesHandWriting"); @@ -263,7 +263,7 @@ namespace DualScreenDemo private void InitializeCloseButtonForSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); closeButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonForSingers"); var buttonImages = LoadButtonImages(data, "CloseButtonImagesHandWriting"); diff --git a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.PinyinSearch.cs b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.PinyinSearch.cs index 00ae40e..68d8999 100644 --- a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.PinyinSearch.cs +++ b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.PinyinSearch.cs @@ -27,7 +27,7 @@ namespace DualScreenDemo handWritingSearchButton.BackgroundImage = handWritingSearchNormalBackground; - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string pinyinImagePath = Path.Combine(serverPath, configData["ImagePaths"]["PinYinSingers"]); ShowImageOnPictureBoxPinYinSingers(Path.Combine(serverPath, pinyinImagePath)); @@ -46,7 +46,7 @@ namespace DualScreenDemo private void InitializeLetterButtonsForPinYinSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); var buttonImages = LoadButtonImages(data, "PinYinLetterButtonImages", 26); string qwertyLayout = "QWERTYUIOPASDFGHJKLZXCVBNM"; letterButtonsForPinYinSingers = new Button[26]; @@ -101,7 +101,7 @@ namespace DualScreenDemo private void InitializeModifyButtonPinYinSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); modifyButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonPinYinSingers"); var buttonImages = LoadButtonImages(data, "ModifyButtonImagesPinYin"); @@ -126,7 +126,7 @@ namespace DualScreenDemo private void InitializeClearButtonPinYinSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); clearButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonPinYinSingers"); var buttonImages = LoadButtonImages(data, "ClearButtonImagesPinYin"); @@ -150,7 +150,7 @@ namespace DualScreenDemo private void InitializeCloseButtonPinYinSingers() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); closeButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonPinYinSingers"); var buttonImages = LoadButtonImages(data, "CloseButtonImagesPinYin"); @@ -201,7 +201,7 @@ namespace DualScreenDemo IniData data; - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } @@ -252,7 +252,7 @@ namespace DualScreenDemo private void LoadPictureBoxPinYinSingerCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); diff --git a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.WordCountSearch.cs b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.WordCountSearch.cs index 3a9c2fa..245d47d 100644 --- a/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.WordCountSearch.cs +++ b/PrimaryFormParts/SingerSearch/PrimaryForm.SingerSearch.WordCountSearch.cs @@ -101,7 +101,7 @@ namespace DualScreenDemo var parser = new FileIniDataParser(); // 設定檔路徑 - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -128,7 +128,7 @@ namespace DualScreenDemo private IniData LoadConfigDataforWordCountSingers() { var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); // 使用 UTF-8 讀取 INI 檔案並解析內容 @@ -665,7 +665,7 @@ namespace DualScreenDemo { // 創建 INI 解析器 var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -712,7 +712,7 @@ namespace DualScreenDemo private void LoadPictureBoxWordCountSingerCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); var coords = data["PictureBoxWordCountSingers"]; diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.BopomofoSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.BopomofoSearch.cs index d0edffd..61594c6 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.BopomofoSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.BopomofoSearch.cs @@ -26,7 +26,7 @@ namespace DualScreenDemo UpdateSongSearchBtn(zhuyinSearchSongButton,zhuyinSearchSongActiveBackground); // 讀取 config.ini 並獲取注音圖片的路徑 - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string imagePath = Path.Combine(serverPath, configData["ImagePaths"]["ZhuYinSongs"]); //顯示注音歌曲圖片 ShowImageOnPictureBoxZhuYinSongs(Path.Combine(serverPath, imagePath)); @@ -53,7 +53,7 @@ namespace DualScreenDemo private void InitializePhoneticButtonsForSongs() { // 1. 從設定檔 (config.ini) 讀取配置數據,包含按鈕座標、圖片等 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 2. 讀取注音符號列表,這些符號將用於顯示在按鈕上 phoneticSymbols = LoadPhoneticSymbols(data); @@ -183,7 +183,7 @@ namespace DualScreenDemo private void InitializeModifyButtonZhuYinSongs() { // 1. 讀取設定檔 (config.ini) 來獲取特殊按鈕的座標與圖像資訊 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 2. 從設定檔讀取「修改」按鈕的座標數據 modifyButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonZhuYinSongs"); @@ -222,7 +222,7 @@ namespace DualScreenDemo private void InitializeClearButtonZhuYinSongs() { // 1. 從設定檔 (config.ini) 讀取配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 2. 讀取「清除」按鈕的座標設定 (從 "SpecialButtonCoordinates" 內的 "clearButtonZhuYinSongs" 取得) clearButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonZhuYinSongs"); @@ -263,7 +263,7 @@ namespace DualScreenDemo private void InitializeCloseButtonZhuYinSongs() { // 讀取設定檔數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 從設定檔讀取關閉按鈕的座標 closeButtonZhuYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonZhuYinSongs"); @@ -372,7 +372,7 @@ namespace DualScreenDemo var parser = new FileIniDataParser(); // 讀取 config.ini 設定檔的內容 - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.EnglishSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.EnglishSearch.cs index c766768..de1b2ab 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.EnglishSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.EnglishSearch.cs @@ -29,7 +29,7 @@ namespace DualScreenDemo bool shouldBeVisible = !pictureBoxEnglishSongs.Visible; - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string imagePath = Path.Combine(serverPath, configData["ImagePaths"]["EnglishSongs"]); ShowImageOnPictureBoxEnglishSongs(Path.Combine(serverPath, imagePath)); @@ -48,7 +48,7 @@ namespace DualScreenDemo private void InitializeNumberButtonsForSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); numberButtonCoords = LoadButtonCoordinates(data, "NumberButtonCoordinates", 10); var buttonImages = LoadButtonImages(data, "NumberButtonImages", 10); /* 按鈕圖片路徑設置 */ @@ -96,7 +96,7 @@ namespace DualScreenDemo /* 鍵盤對應按鈕位置 */ private void InitializeLetterButtonsForEnglishSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); var buttonImages = LoadButtonImages(data, "EnglishLetterButtonImages", 26); string qwertyLayout = "QWERTYUIOPASDFGHJKLZXCVBNM"; letterButtonsForEnglishSongs = new Button[26]; @@ -149,7 +149,7 @@ namespace DualScreenDemo private void InitializeModifyButtonEnglishSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); modifyButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonEnglishSongs"); var buttonImages = LoadButtonImages(data, "ModifyButtonImagesEnglish"); @@ -176,7 +176,7 @@ namespace DualScreenDemo private void InitializeClearButtonEnglishSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); clearButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonEnglishSongs"); var buttonImages = LoadButtonImages(data, "ClearButtonImagesEnglish"); @@ -202,7 +202,7 @@ namespace DualScreenDemo private void InitializeCloseButtonEnglishSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); closeButtonEnglishCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonEnglishSongs"); var buttonImages = LoadButtonImages(data, "CloseButtonImagesEnglish"); @@ -255,7 +255,7 @@ namespace DualScreenDemo IniData data; - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } @@ -298,7 +298,7 @@ namespace DualScreenDemo IniData data; - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.HandwritingSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.HandwritingSearch.cs index 5ccefdb..0ccde83 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.HandwritingSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.HandwritingSearch.cs @@ -31,7 +31,7 @@ namespace DualScreenDemo EnableDoubleBuffering(closeButtonForSongs); - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string handWritingImagePath = Path.Combine(serverPath, configData["ImagePaths"]["HandWritingSongs"]); ShowImageOnPictureBoxHandWritingSongs(Path.Combine(serverPath, handWritingImagePath)); @@ -213,7 +213,7 @@ namespace DualScreenDemo private void InitializeRefillButtonHandwritingSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); refillButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "refillButtonHandWritingSongs"); var buttonImages = LoadButtonImages(data, "RefillButtonImagesHandWriting"); @@ -234,7 +234,7 @@ namespace DualScreenDemo private void InitializeClearButtonHandWritingSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); clearButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonHandWritingSongs"); var buttonImages = LoadButtonImages(data, "ClearButtonImagesHandWriting"); @@ -259,7 +259,7 @@ namespace DualScreenDemo private void InitializeCloseButtonForSongs() { - var data = LoadConfigData(); + var data = LoadBtnConfigData(); closeButtonHandWritingCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonForSongs"); var buttonImages = LoadButtonImages(data, "CloseButtonImagesHandWriting"); diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.NumberSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.NumberSearch.cs index 0f5dd2d..125404e 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.NumberSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.NumberSearch.cs @@ -71,7 +71,7 @@ namespace DualScreenDemo numberSearchSongButton.BackgroundImage = numberSearchSongActiveBackground; // 載入設定檔,取得圖片路徑資訊 - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); // 取得「注音歌手圖片」的完整路徑 string imagePath = Path.Combine(serverPath, configData["ImagePaths"]["SongIDSearch"]); @@ -104,10 +104,10 @@ namespace DualScreenDemo var parser = new FileIniDataParser(); // 設定檔路徑 - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); // 載入設定檔,取得圖片路徑資訊 - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); // 取得 [NumberSongIDSymbols] 區塊中的 "Symbols" 欄位內容 string symbols = configData["NumberSongIDSymbols"]["Symbols"]; @@ -229,7 +229,7 @@ namespace DualScreenDemo private void InitializeNumberSongIDButtons() { // 載入配置資料 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 載入語音符號(如拼音、注音符號等) numberSongIDSymbols = LoadNumberSongIDSymbols(data); @@ -405,7 +405,7 @@ namespace DualScreenDemo private void InitializeModifyButtonSongIDSearch() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 modifyButtonSongIDCoords = LoadSpecialButtonCoordinatesForSongIDSearch(data, "SpecialButtonCoordinates", "modifyButtonSongIDSearch"); @@ -445,7 +445,7 @@ namespace DualScreenDemo private void InitializeClearButtonSongIDSearch() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 clearButtonSongIDCoords = LoadSpecialButtonCoordinatesForSongIDSearch(data, "SpecialButtonCoordinates", "clearButtonSongIDSearch"); @@ -467,7 +467,7 @@ namespace DualScreenDemo private void InitializeEnterButtonSongIDSearch() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 enterButtonSongIDCoords = LoadSpecialButtonCoordinatesForSongIDSearch(data, "SpecialButtonCoordinates", "enterButtonSongIDSearch"); @@ -507,7 +507,7 @@ namespace DualScreenDemo private void InitializeCloseButtonSongIDSearch() { // 加載配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取按鈕坐標 closeButtonSongIDCoords = LoadSpecialButtonCoordinatesForSongIDSearch(data, "SpecialButtonCoordinates", "closeButtonSongIDSearch"); @@ -670,7 +670,7 @@ namespace DualScreenDemo { // 創建 INI 解析器 var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -717,7 +717,7 @@ namespace DualScreenDemo private void LoadPictureBoxSongIDSongCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.PinyinSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.PinyinSearch.cs index 2fed37c..f58d4f1 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.PinyinSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.PinyinSearch.cs @@ -30,7 +30,7 @@ namespace DualScreenDemo numberSearchSongButton.BackgroundImage = numberSearchSongNormalBackground; // 讀取 config.ini 並獲取拼音圖片的路徑 - var configData = LoadConfigData(); + var configData = LoadBtnConfigData(); string pinyinImagePath = Path.Combine(serverPath, configData["ImagePaths"]["PinYinSongs"]); // 顯示拼音歌曲圖片 ShowImageOnPictureBoxPinYinSongs(Path.Combine(serverPath, pinyinImagePath)); @@ -53,7 +53,7 @@ namespace DualScreenDemo private void InitializeLetterButtonsForPinYinSongs() { // 從設定檔 (config.ini) 讀取配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 從配置數據中載入拼音字母按鈕的影像 (包含正常、點擊、滑鼠懸停三種狀態) var buttonImages = LoadButtonImages(data, "PinYinLetterButtonImages", 26); @@ -149,7 +149,7 @@ namespace DualScreenDemo private void InitializeModifyButtonPinYinSongs() { // 讀取設定檔,載入特殊按鈕的配置資料 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 從設定檔取得「修改按鈕」的座標與大小 modifyButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "modifyButtonPinYinSongs"); @@ -188,7 +188,7 @@ namespace DualScreenDemo private void InitializeClearButtonPinYinSongs() { // 從設定檔載入資料 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 讀取「清除」按鈕的座標配置 (X, Y, Width, Height) clearButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "clearButtonPinYinSongs"); @@ -227,7 +227,7 @@ namespace DualScreenDemo private void InitializeCloseButtonPinYinSongs() { // 讀取設定檔中的按鈕配置數據 - var data = LoadConfigData(); + var data = LoadBtnConfigData(); // 從設定檔中取得「關閉」按鈕的座標 (X, Y, Width, Height) closeButtonPinYinCoords = LoadSpecialButtonCoordinates(data, "SpecialButtonCoordinates", "closeButtonPinYinSongs"); @@ -294,7 +294,7 @@ namespace DualScreenDemo IniData data; // 儲存解析後的 INI 數據 // 讀取 config.ini 文件,使用 UTF-8 編碼 - using (var reader = new StreamReader("config.ini", System.Text.Encoding.UTF8)) + using (var reader = new StreamReader("img.ini", System.Text.Encoding.UTF8)) { data = parser.ReadData(reader); } @@ -374,7 +374,7 @@ namespace DualScreenDemo var parser = new FileIniDataParser(); // 讀取 config.ini 文件並解析成 IniData 對象 - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); diff --git a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.WordCountSearch.cs b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.WordCountSearch.cs index 9a66fee..1f00094 100644 --- a/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.WordCountSearch.cs +++ b/PrimaryFormParts/SongSearch/PrimaryForm.SongSearch.WordCountSearch.cs @@ -68,7 +68,7 @@ namespace DualScreenDemo private IniData LoadConfigDataforWordCountSongs() { var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); // 使用 UTF-8 讀取 INI 檔案並解析內容 @@ -610,7 +610,7 @@ namespace DualScreenDemo { // 創建 INI 解析器 var parser = new FileIniDataParser(); - string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data; @@ -657,7 +657,7 @@ namespace DualScreenDemo private void LoadPictureBoxWordCountSongCoordsFromConfig() { var parser = new FileIniDataParser(); - string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.ini"); + string iniPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "img.ini"); IniData data = parser.ReadFile(iniPath); diff --git a/config.ini b/config.ini deleted file mode 100644 index bdd1621..0000000 --- a/config.ini +++ /dev/null @@ -1,802 +0,0 @@ -[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