I'm relatively new to Windows Phone 7 development, so bear with me on this.
I've two tex开发者_运维百科t 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?
<TextBlock>
<Run Text="{Binding ID}" />:
<Run Text="{Binding Title}"/>
</TextBlock>
Three most common UI layout elements are StackPanel, Grid & Canvas. Here's one way..
<StackPanel Orientation="Horizontal">
<TextBlock .. />
<TextBlock .. />
</StackPanel>
精彩评论