註解修改0408

This commit is contained in:
jasonchenwork 2025-04-08 15:54:07 +08:00
parent 2dd399783a
commit 453a1abc20
2 changed files with 0 additions and 25 deletions

View File

@ -633,30 +633,6 @@ namespace DualScreenDemo
// 調整和定位輸入框的位置及大小
ResizeAndPositionControl(inputBoxWordCountSongs, inputBoxWordCountCoords.X, inputBoxWordCountCoords.Y, inputBoxWordCountCoords.Width, inputBoxWordCountCoords.Height);
// 設定文本變更事件,當輸入框內容改變時觸發
/*inputBoxWordCountSongs.TextChanged += (sender, e) =>
{
string searchText = inputBoxWordCountSongs.Text; // 取得輸入內容
if (int.TryParse(searchText, out int length))
{
// 顯示搜尋結果
var searchResults = allSongs
.Where(song => song.Song.Length == length)
.ToList();
// 重置分頁
currentPage = 0;
currentSongList = searchResults;
totalPages = (int)Math.Ceiling((double)searchResults.Count / itemsPerPage);
// 更新多頁面面板的內容
multiPagePanel.currentPageIndex = 0;
multiPagePanel.LoadSongs(currentSongList);
}
};*/
// 將輸入框加入到窗體的控件集合中
this.Controls.Add(inputBoxWordCountSongs);
}

View File

@ -148,7 +148,6 @@ namespace DualScreenDemo
List<SongData> searchResults = new List<SongData>();
string connectionString = "Server=192.168.22.170;Port=3306;Database=Karaoke-Kingpin;User=Karaoke-Kingpin;Password=ESM7yTPMnavFmbBH;";
//string query = "SELECT * FROM SongLibrary WHERE CHAR_LENGTH(歌曲名稱) = @searchLength";
using (var connection = new MySqlConnection(connectionString))
{