gpt4 book ai didi

wpf - 如何使隐式ScrollViewer出现在左侧而不是右侧

转载 作者:行者123 更新时间:2023-12-04 13:42:38 27 4
gpt4 key购买 nike

当列表中有足够的对象时,我有一个ScrollViewer出现在右侧。如何使其显示在左侧?

<ListBox
x:Name="MessageListBox"
BorderThickness="0"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
HorizontalContentAlignment="Stretch"
AlternationCount="2"
ItemContainerStyle="{StaticResource AltStyle}"
SelectionMode="Extended">
<ListBox.ItemTemplate>
<DataTemplate>
<!-- button -->
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

最佳答案

可以通过将列表包装为ScrollViewer并将ScrollViewer属性FlowDirection更改为RightToLeft来实现。另外,请不要忘记将列表FlowDirection还原为LeftToRight,否则它将继承父级的方向。

<ScrollViewer FlowDirection="RightToLeft"
CanContentScroll="False" VerticalScrollBarVisibility="Auto">
<ListBox ItemsSource="{Binding CustomItems}" FlowDirection="LeftToRight"/>
</ScrollViewer>

我在MSDN社交博客上找到了它,
How to Set VerticalScroll bar on Left side

关于wpf - 如何使隐式ScrollViewer出现在左侧而不是右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9723002/

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