CloseDropdown
关闭已经显示的下拉窗口。
语法
ClosDropDown(Selected)
Selected: 可选参数,默认为True,用于指定DropDownClosed事件的e参数Selected的值,一般不需要使用此参数。
示例
假定下拉窗口的布局为:
希望单击任何一个RadionButton(单选框)即可将其标题复制给下拉组合框,并关闭下拉窗口。
为此可以将此下拉窗口的全局事件Click的代码设置为:
With e.Form.DropDownBox
If TypeOf e.Sender Is WinForm.RadioButton Then '如果此控件是RadionButton(单选框)
.Value = e.Sender.Text
.CloseDropDown()
End If
End With