gpt4 book ai didi

c# - 带搜索框的多线程

转载 作者:搜寻专家 更新时间:2023-10-30 22:23:55 24 4
gpt4 key购买 nike

我有一个包含人员列表的列表框(名字、姓氏、地址...)和一个搜索框(带有 TextChaned 事件的文本框问题是我正在运行一个搜索抛出数据库,这需要很长时间,而且 UI 会卡住几秒钟......所以,我怎样才能让它响应?

最佳答案

假设您正在使用数据表,您可以执行以下操作:

private async void btnSearch_Click(object sender, EventArgs e) // async is important
{
DataTable dt = await Task.Run(() => // await is important (avoids the UI freeze)
{
return GetData(); // Fetch your data from DB
});
// Fill your listbox with the data in dt
}

关于c# - 带搜索框的多线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55787348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com