RibbonButton.OnMouseLeftButtonDown(MouseButtonEventArgs) Method

Definition

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

e
MouseButtonEventArgs

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.

Applies to