Rupal
Rupal

Reputation: 480

Silverlight for Windows phone 7 - two text blocks after each other with NO linebreak

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

Answers (2)

Sam Basu
Sam Basu

Reputation: 986

Three most common UI layout elements are StackPanel, Grid & Canvas. Here's one way..

 <StackPanel Orientation="Horizontal">
    <TextBlock .. />
    <TextBlock .. />
 </StackPanel>

Upvotes: 1

Matěj Z&#225;bsk&#253;
Matěj Z&#225;bsk&#253;

Reputation: 17272

 <TextBlock>
     <Run Text="{Binding ID}" />: 
     <Run Text="{Binding Title}"/>
 </TextBlock>

Upvotes: 4

Related Questions