Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Primitives Namespace / Selector Class / ItemSelectionChanging Event


In This Topic
    ItemSelectionChanging Event
    In This Topic
    Raised when an item is changing its selection, letting the user cancel the action if necessary.
    Syntax
    'Declaration
     
    Public Event ItemSelectionChanging As EventHandler(Of ItemSelectionChangingEventArgs)
    'Usage
     
    Dim instance As Selector
    Dim handler As EventHandler(Of ItemSelectionChangingEventArgs)
     
    AddHandler instance.ItemSelectionChanging, handler
    public event EventHandler<ItemSelectionChangingEventArgs> ItemSelectionChanging
    Event Data

    The event handler receives an argument of type ItemSelectionChangingEventArgs containing data related to this event. The following ItemSelectionChangingEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the item on which the IsSelected property is about to be modified.  
    Gets the new value of the IsSelected property on the clicked item.  
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also