如何将IF AND语句与事件一起使用

时间:2014-02-21 02:57:16

标签: vb.net

如果选择了列表框项并单击了按钮,我想要做某事。我在想的是这样但显然不正确。

If ListBox1.SelectedIndex >= 0 And btnConvert_click Then

(这是在ListBox1_SelectedIndexChanged私有子)

1 个答案:

答案 0 :(得分:1)

你需要做这样的事情

Private sub btnConvert_click (sender as Object, e as EventArgs) Handles btnConvert.Click

    If Combo.SelectedIndex > -1 Then ' SelectedIndex= -1 --> nothing selected

        ' Do your code
    End If

End Sub

在您的情况下,您不会使用Combo_Selected。这是您想要选择项目并单击按钮。请记住,第一项的索引为“0”。