Funktionreferenz


_GUICtrlComboBox_GetDroppedState

Beschreibung anzeigen in

Ermittelt, ob die ListBox der ComboBox aufgeklappt ist

#include <GuiComboBox.au3>
_GUICtrlComboBox_GetDroppedState ( $hWnd )

Parameter

$hWnd Control-ID / Handle des Controls

Rückgabewert

True: ist aufgeklappt
False: ist nicht aufgeklappt

Bemerkungen

- - - - - - - - Erklärung der Controls - - - - - - - -

Verwandte Funktionen

_GUICtrlComboBox_ShowDropDown, _GUICtrlComboBoxEx_GetDroppedWidth

Beispiel

#include "Extras\HelpFileInternals.au3"

#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $idCombo

    ; Erstellt eine GUI
    GUICreate("ComboBox: Ermittelt, ob die Liste aufgeklappt ist", 400, 296)
    $idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    _MemoCreate(2, 32, 396, 266, 0)
    GUISetState(@SW_SHOW)

    ; Fügt Dateien hinzu
    _GUICtrlComboBox_BeginUpdate($idCombo)
    _GUICtrlComboBox_AddDir($idCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBox_EndUpdate($idCombo)

    ; Ermittelt, ob die ListBox der ComboBox aufgeklappt ist
    _MemoWrite("ListBox der ComboBox aufgeklappt?......: " & _GUICtrlComboBox_GetDroppedState($idCombo))

    Sleep(500)

    ; Zeigt die ListBox der ComboBox
    _GUICtrlComboBox_ShowDropDown($idCombo, True)

    Sleep(500)

    ; Ermittelt, ob die ListBox der ComboBox aufgeklappt ist
    _MemoWrite("ListBox der ComboBox aufgeklappt?......: " & _GUICtrlComboBox_GetDroppedState($idCombo))

    Sleep(500)

    ; Versteckt die ListBox der ComboBox
    _GUICtrlComboBox_ShowDropDown($idCombo)

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example