1

我知道有 Listbox Select 索引更改问题四处飘荡。但是,这个问题关注的是不同的问题。我有一个列表框,表单上有一些字符串。我想要完成的是能够滚动列表框中的项目(即使用箭头键导航到特定项目)。一旦我导航到我想要的项目,我希望能够在项目上按 enter 并继续我的申请。因此,问题是如何确定在列表框中引发的事件类型,以便将事件与鼠标单击事件或 Keydown 事件进行比较,从而允许我根据结果决定执行哪个条件语句布尔表达式的......我需要确定类型的原因是因为如果用户在 selectedIndexed Item 上按下 ENter 会出现一个对话框,当前每次用户突出显示一个新项目时都会出现该对话框(您可以看到是个问题)。

伪代码

    if (Listbox_Selected_Event_EventType isEqualTo Mouse_Click)
    {
        // execute code
    } else if (Listbox_Selected_Event_EventType isEqualTo KeydownEvent)
          {
             // execute code
          }

感谢 Evan 完成的代码,

    private void listBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (listBox1.SelectedIndex != -1)
        {
            if (e.KeyChar == (char)Keys.Return)
            {
                var file = Directory.GetFiles(urlHistoryFolder, listBox1.Text).FirstOrDefault();
                String line;
                try
                {
                    using (StreamReader sr = new StreamReader(file))
                    {
                        line = sr.ReadToEnd();
                    }

                    DialogResult result1 = MessageBox.Show("Are You sure you want to Load this WebService", "Important Question", MessageBoxButtons.YesNo);
                    if (result1 == DialogResult.Yes)
                    {
                        //MessageBox.Show("Loading WebService");
                        textEndPointUri.Text = line;
                        listBox1.Visible = false;
                        GetBtn_Click(sender, e);
                    }
                }
                catch (Exception exp)
                {
                    Console.WriteLine("File could not be read:");
                    Console.WriteLine(exp.Message);
                }
            }
        }
    }
4

3 回答 3

1

问题是您正在查看错误的事件。您应该处理列表框上的MouseClick事件和KeyUp或事件。KeyDown

    private void listBox1_KeyUp(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Enter)
        {
            //Get the selected item and do whatever you need to it
            //Open your dialog box

        }
    }

    private void listBox1_Click(object sender, MouseEventArgs e)
    {
        //Get the selected item and do whatever you need to it
        //Open your dialog box
    }

那么就不需要条件了,因为您已经分别处理了这两个事件。SelectedIndexChanged确保从事件中删除对话框代码。

编辑: SelectedIndexChanged每次在ListBox对象中选择和项目时触发。即使您不处理该事件,该框仍会存储索引。因此,您可以引用或操作SelectedIndex任何地方的 PROPERTY。如果您处理上述两个事件,则任何时候用户单击一个项目或按 Enter 键时,您都会检查是否有选定的项目:

if (listBox1.SelectedIndex != -1)
{
    //Now we know you have an item selected
    //Do some stuff
}
于 2013-07-12T14:15:48.303 回答
1

向窗体添加一个按钮并将窗体的 AcceptButton() 属性设置为该按钮。现在,当按下 Enter 时,Button 将触发。在 Button Click() 处理程序中显示您的对话框。这还有一个额外的好处,即人们也可以单击 Button 而不是按 Enter:

    private void button1_Click(object sender, EventArgs e)
    {
        if (ListBox.SelectedIndex != -1)
        {
            // ... display the dialog ...
            Console.WriteLine(ListBox.SelectedItem.ToString());
        }
    }
于 2013-07-12T14:21:30.103 回答
0

要确定是否已按下 ENTER:

private void listBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    if (e.KeyChar == (char)Keys.Return)
        // do something
}
于 2013-07-12T13:59:00.623 回答