0

Windows 开发中心的这个页面上,它说

当空间有限时,新的动态溢出行为将自动将主要命令移动到 SecondaryCommands 区域。

但是在我的应用程序中只有 4 个按钮可见,第 5 个不存在,如果我打开菜单也不存在,我必须手动将其放入SecondaryCommands列表中,以使 Windows 显示它。
我做了一个简单的 CommandBar 来测试它

<CommandBar>
    <AppBarButton Icon="Find" Label="test" />
    <AppBarButton Icon="Find" Label="test" />
    <AppBarButton Icon="Find" Label="test" />
    <AppBarButton Icon="Find" Label="test" />
    <AppBarButton Icon="Find" Label="test" />
</CommandBar>

截屏

构建目标和最低版本是 10.0 10586。
我还注意到CommandBarOverflowButtonVisibility找不到类似的属性。

4

1 回答 1

0

This is a feature that won't appear until the Anniversary Update--the documentation has just been updated too early. You can see the feature get explained in detail in this video from //BUILD 2016 at about 11:35. It is not currently available in Build 10586.

于 2016-08-01T18:12:14.560 回答