ShellListViewSelectionChanged Event |
Event that is raised shortly after the selection in the control has been changed.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public 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
Type:
SystemEventHandlerRemarks Unlike
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