ISelectionService::SelectionChanged Event

 

Occurs when the current selection changes.

Namespace:   System.ComponentModel.Design
Assembly:  System (in System.dll)

event EventHandler^ SelectionChanged {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

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
Return to top
Show: