移除粵語熱門

This commit is contained in:
allen.yan 2025-08-07 15:50:12 +08:00
parent e77f13a05f
commit ff32a803ca
3 changed files with 1 additions and 20 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@ build.bat
secondary_graph.grf secondary_graph.grf
primary_graph.grf primary_graph.grf
*.resx *.resx
*.csproj
# 忽略 VS 開發過程產生的資料夾 # 忽略 VS 開發過程產生的資料夾
.vs/ .vs/
bin/ bin/

View File

@ -20,9 +20,6 @@ namespace DualScreenDemo
private Button guoYuNewSongButtonHotSong; private Button guoYuNewSongButtonHotSong;
private Bitmap guoYuNewSongHotSongNormalBackground; private Bitmap guoYuNewSongHotSongNormalBackground;
private Bitmap guoYuNewSongHotSongActiveBackground; private Bitmap guoYuNewSongHotSongActiveBackground;
private Button yueYuButtonHotSong;
private Bitmap yueYuHotSongNormalBackground;
private Bitmap yueYuHotSongActiveBackground;
private Button yingWenButtonHotSong; private Button yingWenButtonHotSong;
private Bitmap yingWenHotSongNormalBackground; private Bitmap yingWenHotSongNormalBackground;
private Bitmap yingWenHotSongActiveBackground; private Bitmap yingWenHotSongActiveBackground;
@ -170,13 +167,6 @@ namespace DualScreenDemo
TaiYuButtonHotSong_Click); TaiYuButtonHotSong_Click);
//InitializeHotSongButton(ref yueYuButtonHotSong, "粵語", 1197, 390, 225, 50,
// normalStateImageHotSong,
// out yueYuHotSongNormalBackground,
// mouseDownImageHotSong,
// out yueYuHotSongActiveBackground,
// YueYuButtonHotSong_Click);
InitializeHotSongButton(ref guoYuButtonHotSong, "國語", 1197, 390, 225, 50, InitializeHotSongButton(ref guoYuButtonHotSong, "國語", 1197, 390, 225, 50,
new Bitmap(Path.Combine(serverPath, "themes\\superstar\\button\\2.次類別\\2.熱門排行_國語人氣排行(未按).png")), new Bitmap(Path.Combine(serverPath, "themes\\superstar\\button\\2.次類別\\2.熱門排行_國語人氣排行(未按).png")),
out guoYuHotSongNormalBackground, out guoYuHotSongNormalBackground,

View File

@ -1,10 +0,0 @@
namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void YueYuButtonHotSong_Click(object sender, EventArgs e)
{
OnHotSongButtonClick(yueYuButtonHotSong, yueYuHotSongActiveBackground, "粵語");
}
}
}