scratmiller
scratmiller

Reputation: 141

Set Text Box property to MultiLine

I am exercising some problems in Expresion blend. My problem is with textbox property.I want it to show strings as multiline text, but it goes horizontally right and I should put cursor on string and go to right along with text.This is very annoying. Any suggestions?

Here a picture of it:

alt text

My best regards and thanks in advance.

Upvotes: 1

Views: 1136

Answers (1)

Frédéric Hamidi
Frédéric Hamidi

Reputation: 263047

It looks like you need to use the TextWrapping property:

<TextBox TextWrapping="Wrap" />

Upvotes: 3

Related Questions