Reputation: 480
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?
Upvotes: 1
Views: 983
Reputation: 986
Three most common UI layout elements are StackPanel, Grid & Canvas. Here's one way..
<StackPanel Orientation="Horizontal">
<TextBlock .. />
<TextBlock .. />
</StackPanel>
Upvotes: 1
Reputation: 17272
<TextBlock>
<Run Text="{Binding ID}" />:
<Run Text="{Binding Title}"/>
</TextBlock>
Upvotes: 4