I'm developing a Windows Phone app.
I have the following XAML:
<!--ContentPanel -->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<ListBox x:Name="SinglesGameList" Margin="0">
<ListBoxItem Margin="10,10,10,5" Height="67" HorizontalAlignment="Center" VerticalAlignment="Center" Width="444">
<TextBlock Text="XXX"/>
</ListBoxItem>
</ListBox>
</Grid>
Instead of setting ListBoxItem Width="444" I'm wondering it there is another way to set it that fills its parent.
Any advice?
Can you try this?