ShellListViewSelectionChanged Event | 
            Event that is raised shortly after the selection in the control has been changed.
            
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic event EventHandler SelectionChanged
Public Event SelectionChanged As EventHandler
public:
 event EventHandler^ SelectionChanged {
	void add (EventHandler^ value);
	void remove (EventHandler^ value);
}member SelectionChanged : IEvent<EventHandler,
    EventArgs>Value
EventHandler
RemarksUnlike 
ItemSelectionChanged and 
SelectedIndexChanged, 
             the event will not be raised for every single item that has been selected or unselected.
             Instead, it is triggered by a timer that is started after the selection has been changed.
             
             The Event is currently only supported in the 
ShellListView.
            
See Also