2025-04-07 16:54:10 +08:00
|
|
|
namespace DualScreenDemo
|
|
|
|
{
|
|
|
|
public partial class PrimaryForm
|
|
|
|
{
|
|
|
|
private void YueYuButtonNewSong_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
|
2025-08-12 17:11:13 +08:00
|
|
|
UpdateNewSongBtns(yueYuButtonNewSong, yueYuNewSongActiveBackground);
|
2025-07-03 18:15:21 +08:00
|
|
|
var yueYuSongs2 = SearchSongs_Mysql(setQueryforNewSong("粵語"));
|
2025-04-07 16:54:10 +08:00
|
|
|
currentPage = 0;
|
|
|
|
totalPages = (int)Math.Ceiling((double)yueYuSongs2.Count / itemsPerPage);
|
|
|
|
|
|
|
|
|
|
|
|
multiPagePanel.currentPageIndex = 0;
|
2025-07-03 18:15:21 +08:00
|
|
|
multiPagePanel.LoadSongs(yueYuSongs2);
|
2025-04-07 16:54:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|