我正在使用VB.NET,并希望提示用户从选项列表中进行选择。有没有什么方法可以像InputBox函数一样容易地做到这一点?
谢谢,
保
答案 0 :(得分:0)
在combobox的selectedIndexchanged事件中写下面的代码
Dim comboBox As comboBox = CType(sender, comboBox)
if combBox.SelectedItem Is Nothing Then
Messagebox.show("please select something")
else
' your logic
End If