das_tnr
das_tnr

Reputation: 151

Windows Phone: Can not fit listbox item to the phone screen

I have a listbox which shows string of different length. If the length of the string is greater than the screen width, the rest is not shown on the screen. How can I fit that kind of string to the screen by using listbox ?

Upvotes: 0

Views: 139

Answers (1)

Gambit
Gambit

Reputation: 2525

Use TextWrapping="Wrap" in you TextBlock to have the text wrap when it hits the width of the control.

Upvotes: 1

Related Questions