superstar_v2/PrimaryFormParts/NewSongAlert/PrimaryForm.NewSongAlertTaiwanese.cs
jasonchenwork d041ff1f80 新增 設定檔
調整 心跳功能
修正 藏鏡人
修正 服務鈴
20250703
2025-07-03 18:15:21 +08:00

23 lines
969 B
C#

namespace DualScreenDemo
{
public partial class PrimaryForm
{
private void TaiYuButtonNewSong_Click(object sender, EventArgs e)
{
guoYuButtonNewSong.BackgroundImage = guoYuNewSongNormalBackground;
taiYuButtonNewSong.BackgroundImage = taiYuNewSongActiveBackground;
yueYuButtonNewSong.BackgroundImage = yueYuNewSongNormalBackground;
yingWenButtonNewSong.BackgroundImage = yingWenNewSongNormalBackground;
riYuButtonNewSong.BackgroundImage = riYuNewSongNormalBackground;
hanYuButtonNewSong.BackgroundImage = hanYuNewSongNormalBackground;
var taiYuSongs2 = SearchSongs_Mysql(setQueryforNewSong("台語"));
currentPage = 0;
totalPages = (int)Math.Ceiling((double)taiYuSongs2.Count / itemsPerPage);
multiPagePanel.currentPageIndex = 0;
multiPagePanel.LoadSongs(taiYuSongs2);
}
}
}