ISelectionService::SelectionChanged Event
.NET Framework (current version)
Occurs when the current selection changes.
Assembly: System (in System.dll)
Minimize processing when handling this event, because processing that occurs within this event handler can significantly affect the overall performance of the form designer.
The following example illustrates how to use the SelectionChanged event.
// Add SelectionChanged event handler to event m_selectionService->SelectionChanged += gcnew EventHandler( this, &ComponentClass::OnSelectionChanged );
/* This is the OnSelectionChanged handler method. This method calls OnUserChange to display a message that indicates the name of the handler that made the call and the type of the event argument. */ void OnSelectionChanged( Object^ /*sender*/, EventArgs^ args ) { OnUserChange( "OnSelectionChanged", args->ToString() ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: