Rahul
Rahul

Reputation: 77846

Printing in silverlight 4 with formating

Can anyone tell me ow to format the text/document before I send it to print. Below is little explanation of what I am trying to achieve.

I have few lines like below

To: abcd

From: xyz

Location:blah

Phone:99999999

Sub:something

Message Body:

I can have this all in a list<string>; add them to page and print them but the print will not be formatted ... printed outcome will be as above but what I am looking for is kind below:

To: abcd

From: xyz

Location: blah

Phone: 99999999

                             **Sub   :    something** 

Dear abcd,

Some message.

Some other information

any idea how can I achieve this. Thanks.

Upvotes: 0

Views: 104

Answers (1)

NestorArturo
NestorArturo

Reputation: 2516

You might need to use Run's inside a textblock like this:

<TextBlock>Name: <Run FontWeight="Bold">Hola que tal</Run><LineBreak />
Age: <Run FontWeight="Bold">201</Run><LineBreak /></TextBlock>

Upvotes: 1

Related Questions