大家好我已经创建了一个带有文本框和一个按钮以显示为下拉样式的动态组合框,一切正常,但我处理keyup
了文本框的事件,以便当用户输入一些文本时,我将搜索结果并显示它们
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
//Some code to filter my data
textBox1.Focus();
}
但是我无法在结果显示后立即将焦点设置回文本框,所以有人可以帮助我
我使用的代码来自这里
http://www.planetsourcecode.com/vb/scripts/showcode.asp?txtCodeId=8554&lngWid=10