UIElement3D.OnIsMouseCapturedChanged Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invoked when an unhandled IsMouseCapturedChanged event is raised on this element. Implement this method to add class handling for this event.
protected:
virtual void OnIsMouseCapturedChanged(System::Windows::DependencyPropertyChangedEventArgs e);
protected virtual void OnIsMouseCapturedChanged (System.Windows.DependencyPropertyChangedEventArgs e);
abstract member OnIsMouseCapturedChanged : System.Windows.DependencyPropertyChangedEventArgs -> unit
override this.OnIsMouseCapturedChanged : System.Windows.DependencyPropertyChangedEventArgs -> unit
Protected Overridable Sub OnIsMouseCapturedChanged (e As DependencyPropertyChangedEventArgs)
Parameters
The DependencyPropertyChangedEventArgs that contains the event data.
Remarks
This virtual method is called when the value of the IsMouseCaptured dependency property changes its value. The virtual method is called first and can manipulate the event data as necessary. Then the IsMouseCapturedChanged event is raised with that same event data instance. Notice that the IsMouseCapturedChanged 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.