__________________________
__________Item1____________
__________Imemnumber2_____
__________Item3____________
__________________________
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<ListBox x:Name="MainListBox" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,-12,0" ItemsSource="{Binding Items}" SelectionChanged="MainListBox_SelectionChanged" >
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="10">
<Image Source="{Binding Image}" Stretch="None"/>
<TextBlock Text="{Binding Title}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
how can I do that?
____________________________
___________Item1_____________
_________Imemnumber2________
___________item3_____________
____________________________
Try to set the TextAlignment property of the TextBox
UPDATE:
Try to fix the width of the TextBlock as shown below