26 lines
952 B
C#
26 lines
952 B
C#
|
namespace DualScreenDemo
|
||
|
{
|
||
|
public partial class PrimaryForm
|
||
|
{
|
||
|
private void GuoYuNewSongButtonHotSong_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
// 重置其他按钮背景
|
||
|
UpdateHotSongButtons(guoYuNewSongButtonHotSong, guoYuNewSongHotSongActiveBackground);
|
||
|
|
||
|
int songLimit = ReadHotSongLimit();
|
||
|
|
||
|
// 使用 AddedTime 排序
|
||
|
var selectedSongs = allSongs.Where(song => song.Category == "國語")
|
||
|
.OrderByDescending(song => song.AddedTime)
|
||
|
.Take(songLimit)
|
||
|
.ToList();
|
||
|
|
||
|
currentPage = 0;
|
||
|
currentSongList = selectedSongs;
|
||
|
totalPages = (int)Math.Ceiling((double)selectedSongs.Count / itemsPerPage);
|
||
|
|
||
|
multiPagePanel.currentPageIndex = 0;
|
||
|
multiPagePanel.LoadSongs(currentSongList);
|
||
|
}
|
||
|
}
|
||
|
}
|