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
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 ?