gpt4 book ai didi

WPF 工具栏 : How to arrange toolbars at design-time

转载 作者:行者123 更新时间:2023-12-04 18:52:45 24 4
gpt4 key购买 nike

我在一个 ToolBarTray 中有两个 Wpf ToolBar。如何使它们适合两行?

我注意到用户可以在运行时移动它们。有没有办法在不使用两个 ToolBarTrays 的情况下在设计时获得相同的行为?

总而言之,在启动时,我想要这个:

alt text

而不是:

alt text

谢谢

最佳答案

使用 Band 和 BandIndex 来控制工具栏布局。

    <ToolBarTray Background="White">
<ToolBar Band="1" BandIndex="1">
<Button Content="B1"/>
<Button Content="B2"/>
<Button Content="B3"/>
</ToolBar>
<ToolBar Band="2" BandIndex="1">
<Button Content="B4"/>
<Button Content="B5"/>
</ToolBar>
<ToolBar Band="2" BandIndex="2">
<Button Content="B6"/>
<Button Content="B7"/>
</ToolBar>
</ToolBarTray>

关于WPF 工具栏 : How to arrange toolbars at design-time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3702436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com