Basic Library for WPF and Silverlight | ComponentOne
C1.WPF Namespace / C1ComboBox Class / KeyDownInPopup Event

In This Topic
    KeyDownInPopup Event (C1ComboBox)
    In This Topic
    Handle this event to provide your own custom navigation when the popup is opened. Receives the key that was pressed and the current index, and returns the new index that should be selected.
    Syntax
    'Declaration
     
    
    Public Event KeyDownInPopup As Func(Of Key,Integer,Integer)
    public event Func<Key,int,int> KeyDownInPopup
    See Also