gpt4 book ai didi

c# - 列表框扩展到页面之外

转载 作者:行者123 更新时间:2023-11-30 22:42:38 26 4
gpt4 key购买 nike

我在 silverlight 应用程序的边框内的堆栈面板内有一个列表框,每当我向列表框添加任何内容时,它的高度都会增加,因此永远不会使用滚动条,并且它会超出边框元素的边界。我已经尝试显式设置列表框、边框和堆栈面板的高度属性,但它仍然超出了这个范围。

这是我的代码:

<Border x:Name="articlePane">
<StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Top">
<Button Content="Latest" MouseEnter="HandleRollInAnimation" MouseLeave="HandleRollOutAnimation" />
<Button Content="Pending" MouseEnter="HandleRollInAnimation" MouseLeave="HandleRollOutAnimation" />
<Button Content="Done" MouseEnter="HandleRollInAnimation" MouseLeave="HandleRollOutAnimation" />
</StackPanel>
<ListBox x:Name="articleList" Margin="5" Background="Transparent" ItemsSource="{Binding}"
ScrollViewer.VerticalScrollBarVisibility="Visible">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" VerticalAlignment="Top" HorizontalAlignment="Center">
<Image x:Name="articleImage" />
<TextBlock x:Name="articleTitle" Text="{Binding Path=Title}" FontSize="18" FontWeight="Bold"
Margin="5"/>
<TextBlock x:Name="articleDate" Text="{Binding Path=Date}" FontSize="14" Foreground="Gray"
Margin="5"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</Border>

最佳答案

我感觉 StackPanel 一直在不断增加高度。我认为在这种情况下,最好在 Border 中使用 Grid 布局。将 Button StackPanel 放在一个高度定义的行中,将 ListBox 放在一个自动调整*高度的行中。这样网格将停留在您的表单范围内。

关于c# - 列表框扩展到页面之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4316471/

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