Warm tip: This article is reproduced from serverfault.com, please click

How to Line Break or new line in XAML

发布于 2013-10-15 16:44:27

I am having hard time to match Special characters set in XAML. I only on the following:

To represent a LineBreak in XAML hyperlink button:

use : > lineBreak <

But What do I use to represent a New Line or LineBreak In XAML hyperlink button??

Example : I want this one line mag : This is line one. This is line two

into this :

This is line one. This is line two.

it seems this \r\n is not working. This is line one \r\n

Questioner
Rizwan Qureshi
Viewed
0
Chris W. 2016-01-28 01:00:42

You've got options. For example;

<HyperlinkButton Content="Line One&#10;Line Two"/>

or

<HyperlinkButton>
  <HyperlinkButton.Content>
    <TextBlock>
      <Run Text="Line 1"/><LineBreak/><Run Text="Line 2"/>
    </TextBlock>
  </HyperlinkButton.Content>
</HyperlinkButton>

Hope this helps.

Addendum: You can do this stuff in basically anything. WPF, Silverlight, UWP, whatever. It's not WP specific.