Is there any way to focus through Content inside MenuFlyoutItem. I have MenuFlyout which has MenuFlyoutItem and inside the menuFlyoutItem ,i'm having a Listview containing three items(Hai,Hi,Bye). After opening MenuFlyout , when i click down Arrow , the focus goes to first item inside MenuFlyout. After that when i click downArrow , the focus didn't goes to listview inside MenuFlyoutItem.
What I'm trying to achieve is , whenever MenuflyoutItem has content(ListView or any Control type),i want keyboard focus navigation inside the listview items also. how to Achieve?
My sample Project Link (KeyboardFocusNavigationSample)
According to your code, I added the
ListView_Loadedevent and used the Control.Focus(FocusState) Method to set focus state after the control is loaded.The effect is that after opening the MenuFlyout, the focus is on the first row of the listview.