Hello,
On my page I have a command bar, in it I have an AppBarButton and in it I have a flyout which is something like this:
<AppBarButton x:Name="Reports" Icon="Page2" Label="Reports">
<AppBarButton.Flyout>
<MenuFlyout x:Name="ReportFlyout">
(more stuff here)
<ToggleMenuFlyoutItem Name="ToggleStuff" Text="ToggleStuff" Click="ToggleStuff_Click" />
</MenuFlyout>
</AppBarButton.Flyout>
</AppBarButton>
I want the user to be able to click the ToggleMenuFlyoutItem without the flyout hiding. Is this possible?