要在 CheckedListBox 中實現搜索功能,你可以使用以下方法:
以下是一個簡單的 C# 示例,展示了如何在 Windows Forms 應用程序中實現 CheckedListBox 的搜索功能:
using System;
using System.Linq;
using System.Windows.Forms;
namespace CheckedListBoxSearchDemo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
string searchText = textBox1.Text.Trim().ToLower();
listBox1.Items.Clear();
if (string.IsNullOrEmpty(searchText))
{
foreach (var item in checkedListBox1.Items)
{
listBox1.Items.Add(item);
}
}
else
{
foreach (var item in checkedListBox1.Items)
{
if (item.ToString().ToLower().Contains(searchText))
{
listBox1.Items.Add(item);
}
}
}
}
}
}
在這個示例中,我們創建了一個名為 Form1
的窗體,其中包含一個 CheckedListBox(checkedListBox1)、一個 TextBox(textBox1)和一個 ListBox(listBox1)。當用戶在 TextBox 中輸入搜索關鍵字時,我們會根據關鍵字篩選 CheckedListBox 中的項目,并將篩選后的項目顯示在 ListBox 中。
請注意,這個示例僅用于演示目的。在實際項目中,你可能需要根據需求進行調整。