PresentationSource::RemoveSourceChangedHandler Method (IInputElement^, SourceChangedEventHandler^)
Removes a handler for the SourceChanged event from the provided element.
Assembly: PresentationCore (in PresentationCore.dll)
public: static void RemoveSourceChangedHandler( IInputElement^ e, SourceChangedEventHandler^ handler )
Parameters
- e
-
Type:
System.Windows::IInputElement^
The element to remove the handler from.
- handler
-
Type:
System.Windows::SourceChangedEventHandler^
The handler implementation to remove.
Even though this is a routed event, there are special restrictions placed on this event that differ from normal routed event behavior, due to the relatively small number of elements in a typical application scenario that would concern themselves with handling this event.
You cannot use the UIElement or ContentElement RemoveHandler methods to remove handlers. You must use RemoveSourceChangedHandler.
The C# += and -= event handler syntaxes, and other language specific handler syntaxes, are not supported, because the event itself is not exposed as public. Only the PresentationSource utility methods for adding and removing the handlers directly are supported.
Available since 3.0