[WPF]如何设置数据模板中网格的宽度和高度

发布于 2024-08-18 03:51:37 字数 1478 浏览 3 评论 0原文

有以下wpf代码:

<Window x:Class="WpfApplication5.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:WpfApplication5"
Title="Window1" Height="300" Width="300">
<Window.Resources>
    <c:Places x:Key="PlacesData"/>
    <DataTemplate x:Key="DataTemplate" DataType="{x:Type c:Place}">
        <Grid HorizontalAlignment="Left" 
              >
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="40"/>
            </Grid.ColumnDefinitions>
            <TextBlock Grid.Column="0" Text="{Binding Name}"/>
            <TextBlock Grid.Column="1" Text="{Binding State}" TextAlignment="Right"/>
        </Grid>
    </DataTemplate>
</Window.Resources>
<Grid>
    <ListBox ItemsSource="{Binding Source={StaticResource PlacesData}}" 
             ItemTemplate="{StaticResource DataTemplate}"
             ScrollViewer.HorizontalScrollBarVisibility="Disabled"  
             ScrollViewer.CanContentScroll="False"
             HorizontalContentAlignment="Stretch"/>
</Grid>

输出是这样的 替代文本

我希望状态代码始终显示在列表框的右侧,如果我调整窗口大小,也必须发生这种情况。

有什么想法吗?

Having the following wpf code:

<Window x:Class="WpfApplication5.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:WpfApplication5"
Title="Window1" Height="300" Width="300">
<Window.Resources>
    <c:Places x:Key="PlacesData"/>
    <DataTemplate x:Key="DataTemplate" DataType="{x:Type c:Place}">
        <Grid HorizontalAlignment="Left" 
              >
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="40"/>
            </Grid.ColumnDefinitions>
            <TextBlock Grid.Column="0" Text="{Binding Name}"/>
            <TextBlock Grid.Column="1" Text="{Binding State}" TextAlignment="Right"/>
        </Grid>
    </DataTemplate>
</Window.Resources>
<Grid>
    <ListBox ItemsSource="{Binding Source={StaticResource PlacesData}}" 
             ItemTemplate="{StaticResource DataTemplate}"
             ScrollViewer.HorizontalScrollBarVisibility="Disabled"  
             ScrollViewer.CanContentScroll="False"
             HorizontalContentAlignment="Stretch"/>
</Grid>

The output is this
alt text

I want that the state code to be displayed always in the right side of the listbox and this must happen also if I resize the window.

Any ideas ?

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

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

发布评论

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

评论(2

南…巷孤猫 2024-08-25 03:51:37

确保每个 ListBoxItemHorizo​​ntalContentAlignment 设置为 Stretch

<ListBox>
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>

Ensure the HorizontalContentAlignment of each ListBoxItem is set to Stretch:

<ListBox>
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>
梦太阳 2024-08-25 03:51:37

使网格的Horizo​​ntalAlignment Stretch,而不是Left

<DataTemplate x:Key="DataTemplate" DataType="{x:Type c:Place}">
    <Grid HorizontalAlignment="Stretch">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*" />
            <ColumnDefinition Width="40"/>
        </Grid.ColumnDefinitions>
        <TextBlock Grid.Column="0" Text="{Binding Name}"/>
        <TextBlock Grid.Column="1" Text="{Binding State}" TextAlignment="Right"/>
    </Grid>
</DataTemplate>

Make your Grid's HorizontalAlignment Stretch, not Left.

<DataTemplate x:Key="DataTemplate" DataType="{x:Type c:Place}">
    <Grid HorizontalAlignment="Stretch">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*" />
            <ColumnDefinition Width="40"/>
        </Grid.ColumnDefinitions>
        <TextBlock Grid.Column="0" Text="{Binding Name}"/>
        <TextBlock Grid.Column="1" Text="{Binding State}" TextAlignment="Right"/>
    </Grid>
</DataTemplate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文