Question

I thinks that in this case A picture is worth a thousand words:

alt text

XAML:

 <Grid>
    <ItemsControl ItemsSource="{Binding Persons}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto"/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>
                    <TextBlock Text="{Binding Name}" Background="LightBlue"/>
                    <TextBlock Text="{Binding Age}" Background="LightPink" Grid.Column="1"/>
                </Grid>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
</Grid>

p.s - I don't want to set a specific with to the first column, but to give it the max with that it needs.

Update: I've tried ColinE's link and done this:

 <Grid.ColumnDefinitions>
                        <ColumnDefinition SharedSizeGroup="A" Width="Auto"/>
                        <ColumnDefinition />
                    </Grid.ColumnDefinitions>

but it didn't worked for me.

Was it helpful?

Solution

You need to use a SharedSizeGroup for each column.

Check out this tutorial ...

http://blogs.interknowlogy.com/johnbowen/archive/2007/08/27/21132.aspx

Also, ensure that the shared size scope property is true for your grid:

<Grid  Grid.IsSharedSizeScope="True">
    <ItemsControl ItemsSource="{Binding Persons}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" SharedSizeGroup="A"/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>
                    <TextBlock Text="{Binding Name}" Background="LightBlue"/>
                    <TextBlock Text="{Binding Age}" Background="LightPink" Grid.Column="1"/>
                </Grid>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
</Grid>

OTHER TIPS

Instead of using Grid how about using DataGrid?

<Grid>

    <DataGrid ItemsSource="{Binding}" 
             AutoGenerateColumns="False" 
             IsReadOnly="True" 
             CanUserAddRows="False" 
             ColumnHeaderHeight="0" 
             GridLinesVisibility="None">

        <DataGrid.Resources>

            <Style TargetType="DataGridCell" x:Key="NameStyle">
                <Setter  Property="Background" Value="LightBlue"/>
                <Setter Property="BorderBrush" Value="LightBlue"/>
            </Style>

            <Style TargetType="DataGridCell" x:Key="AgeStyle">
                <Setter  Property="Background" Value="LightPink"/>
                <Setter Property="BorderBrush" Value="LightPink"/>
            </Style>

        </DataGrid.Resources>

        <DataGrid.Columns>

            <DataGridTextColumn Binding="{Binding Name}" 
                                CellStyle="{StaticResource ResourceKey=NameStyle}"/>

            <DataGridTextColumn Binding="{Binding Age}" 
                                CellStyle="{StaticResource ResourceKey=AgeStyle}"/>

        </DataGrid.Columns>

    </DataGrid>

</Grid>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top