使用上下方向键选择列表框

本文关键字:选择 列表 方向 上下 | 更新日期: 2023-09-27 18:10:29

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

使用上下方向键选择列表框

添加一个处理程序到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++;
  }
}

我认为你可以使用SendMessage API来做到这一点。像这样:

private const int WM_VSCROLL = 0x115;
[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, UIntPtr wParam, IntPtr lParam);
private void listBox_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Down)
    {
        SendMessage(this.listBox.Handle, (uint)WM_VSCROLL, (System.UIntPtr)ScrollEventType.SmallIncrement, (System.IntPtr)0);
        e.Handled = true;
    }
    if (e.KeyCode == Keys.Up)
    {
        SendMessage(this.listBox.Handle, (uint)WM_VSCROLL, (System.UIntPtr)ScrollEventType.SmallDecrement, (System.IntPtr)0);
        e.Handled = true;
    }
}

我已经写了这个代码

     private void listBox1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Up)
        {
            int indicee = listBox1.SelectedIndex;
            label2.Text = indicee.ToString();
        }
        if (e.KeyCode == Keys.Down)
        {
            int indicee = listBox1.SelectedIndex;
            label2.Text = indicee.ToString();
        }

但是当按下索引没有变化,我认为代码一定是在其他事件

这是最好的方法,它对我来说很好

         private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {   
        int indicee = listBox1.SelectedIndex +1;
        label6.Text = indicee.ToString();
        ni = indicee-1;
        if (ni >= 0)
        { loadender(ni); }

当您使用箭头键移动时,列表框的索引也会发生变化,然后在此事件中编写代码