标签: c# winforms combobox
我想显示combox的项目 当我按下键盘上的akey时
combox
按键时如何显示组合框中的所有项目 当我点击回车键
然后组合框项目显示如此图像
private void comboBox4_KeyPress(object sender, EventArgs e){ if(e.Keychar==(char)consoleKey.Enter){ displayAllitems(); //like the image } }