RibbonButton.OnMouseLeftButtonDown(MouseButtonEventArgs) 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.
Provides class handling for the MouseLeftButtonDown routed event to prevent the control from receiving keyboard focus.
protected:
override void OnMouseLeftButtonDown(System::Windows::Input::MouseButtonEventArgs ^ e);
protected override void OnMouseLeftButtonDown (System.Windows.Input.MouseButtonEventArgs e);
override this.OnMouseLeftButtonDown : System.Windows.Input.MouseButtonEventArgs -> unit
Protected Overrides Sub OnMouseLeftButtonDown (e As MouseButtonEventArgs)
Parameters
The event data.
Remarks
The Ribbon should not take keyboard focus from the application. This method overrides the default behavior and temporarily sets the Focusable property to false
, which prevents the control from taking keyboard focus. It then calls the base method.
This implementation does not change the handled state (the Handled property) of the MouseLeftButtonDown event data.