gpt4 book ai didi

wpf - 如何在WPF中将宽度设置为100%

转载 作者:行者123 更新时间:2023-12-02 03:02:57 24 4
gpt4 key购买 nike

有什么方法可以告诉 WPF 中的组件占用 100% 的可用空间吗?

喜欢

width: 100%;  

在CSS中

我有这个 XAML,但我不知道如何强制 Grid 采用 100% 宽度。

<ListBox Name="lstConnections">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Background="LightPink">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Text="{Binding Path=User}" Margin="4"></TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding Path=Password}" Margin="4"></TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Text="{Binding Path=Host}" Margin="4"></TextBlock>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

结果看起来像

alt text http://foto.darth.cz/pictures/wpf_width.jpg

我把它变成了粉红色,所以很明显它占用了多少空间。我需要将粉色网格设置为 100% 宽度。

最佳答案

它是 Grid 的容器,影响其宽度。在本例中,这是一个 ListBoxItem,默认情况下左对齐。您可以将其设置为拉伸(stretch),如下所示:

<ListBox>
<!-- other XAML omitted, you just need to add the following bit -->
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="HorizontalAlignment" Value="Stretch"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>

关于wpf - 如何在WPF中将宽度设置为100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/787436/

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