Welcome to the UWP feedback portal. We’re happy you’re here! If you have feedback on how to improve the UWP, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
In SfMenu, we can define shortcut key for menu items by using InputGestureText property. But the defined shortcut key doesn't get displayed while opening sub menu items.
Please refer the following code sample.
<sfmenu:SfMenu x:Name="mainMenu">
<sfmenu:SfMenuItem x:Name="fileMenu" Header="File" AccessKey="F">
<sfmenu:SfMenuItem x:Name="newDocMenu" Header="New" InputGestureText="Ctrl + N"/>
</sfmenu:SfMenuItem></sfmenu:SfMenu>
In the below screen shot, Ctrl + N is not displayed. Expected behavior is that Ctrl + N needs to be displayed on the right side of the "New" menu item.