I have a Button that opens a MenuFlyout when pressed. The MenuFlyout has several custom MenuFlyoutItems: One with a nested StackPanel, one that has a bound Command, and one ListView of actionable items (defined with ListView.ItemTemplate). The problem is that when navigating the flyout using the keyboard, I can’t access/perform any actions on the items within the ListView, the focus only moves to surround the entire ListView.
No success with arrow keys. I’ve tried defining TabFocusNavigation=”Cycle” and XYFocusKeyboardNavigation=”Enabled” on the MenuFlyoutItem that wraps the ListView, IsItemClickEnabled=”True”, TabFocusNavigation=”Cycle”, and XYFocusKeyboardNavigation=”Enabled” on the ListView, and every combination of these. What am I missing here?