vote up 0 vote down star

Is there anyway in XAML only to have a linebreak in a TextBox?

I know I can set myTextBox.Text = "something\r\nsomething2" in Code, but I can't do this:

<TextBox x:Name="myTextBox">
    <TextBox.Text>
        Something
        <Linebreak/>
        Something2
    </TextBox.Text>
</TextBox>

or this

<TextBox x:Name="myTextBox" Text="something\r\nsomething2" />
flag

60% accept rate
As per @Dillie-O's reply, this is a duplicate of stackoverflow.com/questions/183406/… – Matt Hamilton Oct 21 '08 at 21:52

closed as exact duplicate by Matt Hamilton Oct 21 '08 at 21:52

1 Answer

vote up 1 vote down

Try out...

<TextBox x:Name="myTextBox" Text="something1&#x0a;something2" />

Found here. - SOFlow is already hitting top searches in google 8^D

link|flag
Interesting. The #x0a; syntax works inside the literal "Text=" attribute, but not if you embed it inside of the <TextBox.Text> element. – Matt Hamilton Oct 21 '08 at 21:51

Not the answer you're looking for? Browse other questions tagged or ask your own question.