'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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Item | Gets the item on which the IsSelected property is about to be modified. |
NewIsSelected | 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