IBinaryRibbonKeyTipControl
An interface that requires its implementations to be able to execute a method in order to perform an action when the user invokes the keyboard keys as specified in the implementing control's keytip.
public interface IBinaryRibbonKeyTipControl
Remarks
BinaryRibbon supports the concept of KeyTips whereby any control in the Ribbon Window can be associated with a key code to provide keyboard access to the control.
Upon invoking the specified keyboard key code as is specified in the KeyTip of the control, the control is expected to perform some command invocation, like a button's click event handling and the like.
Any control that is hosted in the BinaryRibbonWindow can have a KeyTip specified on them by using the AccessKey attached property.
When the user invokes the specified KeyTip, if the control wants to execute some logic, then it needs to implement this interface IBinaryRibbonKeyTipControl.
By implementing the prescribed method PerformKeyTipExecute, BinaryRibbon control will ensure that the implemented method is run at the time when the user invokes the specified AccessKey/Keytip.
Members at a glance
PerformKeyTipExecute | Does whatever this control's key tip stands for, as though the user had clicked it. |
Methods
PerformKeyTipExecute
Does whatever this control's key tip stands for, as though the user had clicked it.