gpt4 book ai didi

c# - 列表框项目方向为水平

转载 作者:可可西里 更新时间:2023-11-01 07:42:54 25 4
gpt4 key购买 nike

如何在列表框的默认样式中使列表框项目的方向为水平。默认情况下,我的意思是我们使用 blend 获得的样式。

最佳答案

使用 ItemsPanel用水平 StackPanel 替换面板的属性:

<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>

如果您想在 Style 中执行此操作,只需添加一个设置 ItemsPanel 属性的 Setter:

<Style TargetType="ListBox">
<!-- Rest of the style -->
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>

关于c# - 列表框项目方向为水平,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3565553/

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