I'm trying to attach a key tip to a hyperlink, but it's not working out. Using this code:
<TextBlock><Hyperlink x:Name="MyLink" ribbon:KeyTipService.KeyTipAccessText="L" NavigateUri="http://mylink.com" RequestNavigate="Link_RequestNavigate"><Run Text="MyLink"/></Hyperlink></TextBlock>
nothing is displayed over the hyperlink when key tip mode is entered. If I set the service attribute on the parent text block instead, the key tip is displayed as expected, but the RequestNavigate event isn't fired when the key is pressed.
What's the best way to get this to work?