ComboBox.DropDownOpened Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque la liste déroulante de la zone de liste déroulante s'ouvre.
public:
event EventHandler ^ DropDownOpened;
public event EventHandler DropDownOpened;
member this.DropDownOpened : EventHandler
Public Custom Event DropDownOpened As EventHandler
Type d'événement
Exemples
L’exemple suivant montre comment affecter des gestionnaires d’événements et gérer les DropDownOpened événements et DropDownClosed .
<ComboBox Name="cb" StaysOpenOnEdit="true" IsEditable="true" DropDownOpened="OnDropDownOpened"
DropDownClosed="OnDropDownClosed">
void OnDropDownOpened(object sender, EventArgs e)
{
if (cb.IsDropDownOpen == true)
{
cb.Text = "Combo box opened";
}
}
void OnDropDownClosed(object sender, EventArgs e)
{
if (cb.IsDropDownOpen == false)
{
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
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.