Hi guys!
I want to show KeyTips to the users but I don't get it working.
It works for the QuickAccessToolbar but not for a simple RibbonButton?I don't see any differences concerning the demo apps. What's wrong?
Thanks!
Here is the code im using:
<telerik:RadRibbonWindow x:Class="WpfApplication4.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" WindowStartupLocation="CenterScreen" WindowState="Maximized" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <telerik:RadRibbonView HorizontalContentAlignment="Stretch" Title="Testapp" x:Name="RadRibbonView" telerik:KeyTipService.IsKeyTipsEnabled="True"> <telerik:RadRibbonView.QuickAccessToolBar> <telerik:QuickAccessToolBar Margin="15,0,0,0"> <telerik:RadRibbonButton Text="Save" telerik:KeyTipService.AccessText="1" Click="RadRibbonButton_Click" /> <telerik:RadRibbonButton Text="Undo" telerik:KeyTipService.AccessText="2" /> <telerik:RadRibbonButton Text="Print" telerik:KeyTipService.AccessText="3" /> </telerik:QuickAccessToolBar> </telerik:RadRibbonView.QuickAccessToolBar> <telerik:RadRibbonTab Header="testtab" telerik:KeyTipService.IsKeyTipsEnabled="True"> <telerik:RadRibbonGroup Header="testgroup" > <telerik:RadRibbonButton Text="Test" telerik:KeyTipService.AccessText="T" Click="RadRibbonButton_Click"/> </telerik:RadRibbonGroup> </telerik:RadRibbonTab> </telerik:RadRibbonView> <Grid Grid.Row="1"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> </Grid> </Grid> </telerik:RadRibbonWindow>