gpt4 book ai didi

C#、winform - 使用向上和向下箭头键选择列表框?

转载 作者:行者123 更新时间:2023-12-04 06:12:02 31 4
gpt4 key购买 nike

我有列表框,我可以使用键盘和鼠标选择条目(单选模式 - 一次一个),但是当我使用向上和向下箭头键时,它没有选择列表。但是能够在与箭头键相关的每个实体下方使用下划线滚动列表。谢谢

最佳答案

向 Form1.KeyDown 事件添加处理程序:

private Form1_KeyDown(object sender, KeyEventArgs e)
{
this.listBox1.Focus();
this.listBox1.Select();

if (e.Key == Keys.Up)
{
this.listBox1.SelectedIndex--;
}
else if (e.Key == Keys.Down)
{
this.listBox1.SelectedIndex++;
}
}

关于C#、winform - 使用向上和向下箭头键选择列表框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7672776/

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