views:

221

answers:

2

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 ?

+1  A: 

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>

HTH,
Kent

Kent Boogaart
I doesn't work. The same problem
Alin
+1  A: 

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>
Adam Sills
Thx Adam. Your solution works
Alin
My pleasure. Though I'd have to ask why you marked the other answer as the correct answer :)
Adam Sills