gpt4 book ai didi

WPF 列表框滚动条不起作用

转载 作者:行者123 更新时间:2023-12-04 13:44:45 25 4
gpt4 key购买 nike

<ListBox Name="myListBx" ItemsSource="{Binding Collection}" Margin="5,5"
SelectedValuePath="ColId"
SelectedValue="{Binding Path=ColId}"
SelectionMode="Multiple"
BorderThickness="0" Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.VerticalScrollBarVisibility ="Auto">
<ListBox.ItemTemplate>
<DataTemplate>
// blabla
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

我的 ListBox 包含这么多元素,实际上滚动条应该可以工作,但它甚至不可见。
难道我做错了什么?

谢谢

最佳答案

您需要将 ListBox 放在 Grid 中。 StackPanel 有一个
无限高度,因此 ScrollBar 不会启用或可见。

<Grid>
<ListBox VerticalAlignment="Stretch" />
</Grid>

关于WPF 列表框滚动条不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15294112/

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