In my app, I have many commandsBar, but with this last SDK, the button "..." disappear on my commandBar.
I search on web and the conclusion: At Build 2016, showed changes in many XAML elements. CommandBars specific, have new properties.
If I put "OverflowButtonVisibility="Visible"" on my commnadBar, "..." appear correctly, but, is not working with Min Target Version 10586. Only work with Min Target Version Windows 10 Anniversary Edition (10.0; Build 14393).
My question are: I need to show always "...", How do this?
Min Version Supported: 10240
Max Version Supported: Windows 10 Anniversary Edition (10.0; Build 14393).
MyCode:
<CommandBar x:Name="CommandBar">
<AppBarButton Icon="Filter" Label="Filter X" Style="{StaticResource StyleFilter}">
</AppBarButton>
</CommandBar>
Thanks in advance