如何使列表框展开以适应整个可用宽度?

发布于 2024-11-03 07:29:19 字数 776 浏览 0 评论 0原文

在此处输入图像描述

我需要使 ListBox 展开以适应其可用的宽度。这是 XAML:

<ListBox Grid.Row="2" Height="400" ItemsSource="{StaticResource Notes}" VerticalAlignment="Top">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Vertical" Height="90" Margin="5">
                        <TextBlock Text="{Binding Title}" FontSize="30" />
                        <TextBlock Text="{Binding Text}" FontSize="15" />
                        <Rectangle Fill="#1192D4" Height="2" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

enter image description here

I need to make the ListBox expand to fit the width it has available. Here's the XAML:

<ListBox Grid.Row="2" Height="400" ItemsSource="{StaticResource Notes}" VerticalAlignment="Top">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Vertical" Height="90" Margin="5">
                        <TextBlock Text="{Binding Title}" FontSize="30" />
                        <TextBlock Text="{Binding Text}" FontSize="15" />
                        <Rectangle Fill="#1192D4" Height="2" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生戏 2024-11-10 07:29:19

请看一下这个帖子
填充其父项的 ListBoxItem

Please take a look at this post
A ListBoxItem that fills its parent

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文