Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / C1SelectionManager<T> Class / HandleSelectionChange Method / HandleSelectionChange(T,Boolean,Boolean) Method
The item to handle its selection
A value indicating if the item status (selected/unselected) was already changed outside the C1SelectionManager
If true, the pressed key will be ignored

In This Topic
    HandleSelectionChange(T,Boolean,Boolean) Method
    In This Topic
    Handles the item selection, checks the item current status and updates the selected items.
    Syntax
    'Declaration
     
    
    Public Overloads Sub HandleSelectionChange( _
       ByVal item As T, _
       ByVal statusChanged As Boolean, _
       ByVal ignoreKeyboard As Boolean _
    ) 
    public void HandleSelectionChange( 
       T item,
       bool statusChanged,
       bool ignoreKeyboard
    )

    Parameters

    item
    The item to handle its selection
    statusChanged
    A value indicating if the item status (selected/unselected) was already changed outside the C1SelectionManager
    ignoreKeyboard
    If true, the pressed key will be ignored
    See Also