I’m relatively new to Windows Phone 7 development, so bear with me on this.
I’ve two text blocks, each with binding to two different properties, like this:
<TextBlock Text="{Binding ID}" />
<TextBlock Text="{Binding Title}"/>
So when I deploy this code, on the phone it will be something like this:
6
This is a title
I want the text to be displayed this way instead:
6: This is a title
What is the easiest way to achieve this?
Three most common UI layout elements are StackPanel, Grid & Canvas. Here’s one way..