UIElement.OnIsMouseCaptureWithinChanged Method
Invoked when an unhandled IsMouseCaptureWithinChanged event is raised on this element. Implement this method to add class handling for this event.
Assembly: PresentationCore (in PresentationCore.dll)
'Declaration Protected Overridable Sub OnIsMouseCaptureWithinChanged ( _ e As DependencyPropertyChangedEventArgs _ ) 'Usage Dim e As DependencyPropertyChangedEventArgs Me.OnIsMouseCaptureWithinChanged(e)
You cannot use methods in XAML.
Parameters
- e
- Type: System.Windows.DependencyPropertyChangedEventArgs
A DependencyPropertyChangedEventArgs that contains the event data.
This virtual method is raised when the value of the IsMouseCaptureWithin dependency property changes its value. The virtual method is raised first and can manipulate the event data as necessary. Then the IsMouseCaptureWithinChanged event is raised with that same event data instance. Notice that the event is not a routed event; Therefore, you cannot mark it as handled in the class handler.
This method has no default implementation. Because an intermediate class in the inheritance might implement this method, we recommend that you call the base implementation in your implementation. You may call base either before or after your special handling, depending on your requirements.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.