要實現即時搜索功能,可以在c#中使用TextBox控件的TextChanged事件來實現。當用戶輸入文本時,每次文本發生變化時都會觸發TextChanged事件,可以在事件處理程序中編寫搜索邏輯來實現即時搜索功能。
以下是一個簡單示例,演示了如何在TextBox中實現即時搜索功能:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace InstantSearchExample
{
public partial class Form1 : Form
{
private List<string> dataList = new List<string> { "apple", "banana", "orange", "pear", "grape", "cherry" };
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
string searchText = textBox1.Text.ToLower();
listBox1.Items.Clear();
foreach (string item in dataList)
{
if (item.ToLower().Contains(searchText))
{
listBox1.Items.Add(item);
}
}
}
}
}
在上面的示例中,我們創建了一個包含若干水果名稱的dataList列表,并將其綁定到TextBox的TextChanged事件處理程序中。當用戶在TextBox中輸入文本時,會根據輸入的文本內容動態過濾dataList列表,并將符合條件的結果顯示在ListBox中。
通過這種方式,用戶可以實時查找并瀏覽符合搜索條件的結果。