GinLeeDu_KTV/PrimaryFormParts/NewSongAlert/PrimaryForm.NewSongAlertEnglish.cs
jasonchenwork 8046eb5a35 新增 設定檔
調整 心跳功能
修正 藏鏡人
修正 服務鈴
20250703
2025-07-03 18:11:43 +08:00

24 lines
966 B
C#

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