ComboBox.DropDownOpened Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the drop-down list of the combo box opens.
public:
event EventHandler ^ DropDownOpened;
public event EventHandler DropDownOpened;
member this.DropDownOpened : EventHandler
Public Custom Event DropDownOpened As EventHandler
Event Type
Examples
The following example shows how to assign event handlers and handle the DropDownOpened and DropDownClosed events.
<ComboBox Name="cb" StaysOpenOnEdit="true" IsEditable="true" DropDownOpened="OnDropDownOpened"
DropDownClosed="OnDropDownClosed">
void OnDropDownOpened(object sender, EventArgs e)
{
if (cb.IsDropDownOpen)
{
cb.Text = "Combo box opened";
}
}
void OnDropDownClosed(object sender, EventArgs e)
{
if (!cb.IsDropDownOpen)
{
cb.Text = "Combo box closed";
}
}
Private Sub OnDropDownOpened(ByVal Sender As Object, ByVal e As EventArgs)
If (cb.IsDropDownOpen = True) Then
cb.Text = "Combo box opened"
End If
End Sub
Private Sub OnDropDownClosed(ByVal Sender As Object, ByVal e As EventArgs)
If (cb.IsDropDownOpen = False) Then
cb.Text = "Combo box closed"
End If
End Sub
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET