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