DropDownOpened

展开下拉窗口后执行。
可以在这里对下拉窗口进行设置。

e参数属性:

Form:表示触发事件的窗口。

示例

假定下拉窗口的布局如下:

希望在展开下拉窗口后,能够根据DropDownBox的内容自动选中对应的RadionButton。
为此可以将下拉窗口的
DropDownOpened事件的代码设置为:

Dim Val As String = e.Form.DropDownBox.Text
For
Each ctl As WinForm.Control In e.Form.Controls '遍历所有控件
   
If TypeOf ctl Is WinForm.RadioButton Then '如果此控件是RadionButton(单选框)
       
Dim rdo As WinForm.RadioButton = ctl
        If
rdo.Text = Val Then
'如果此单选框的文本等于下拉组合框的文本
            rdo.Checked =
True '则选中此单选框
           
Exit For
       
End If
   
End If
Next

 

 


本页地址:http://www.foxtable.com/webhelp/topics/2113.htm