vote up 1 vote down star
1

Hi there,

Is there a way to display multi-line text in standard Winforms listview control?

Thanks, Kemal

flag

2 Answers

vote up 2 vote down check

If you want multi-line text in a ListView, have a look at ObjectListView (an open source wrapper around .NET WinForms ListView). This takes care of many of the problems involved with owner drawing (and other ListView annoyances).

In the following screenshot, the first column has WordWrap turned on:

alt text

Just remember that a ListView CANNOT have rows of different heights. In the above screenshot, I cannot make the first and third rows taller to show more text and the other rows shorter. Every row has to be the same height.

If being able to have rows of different heights is essential to you, a ListView will not your solution. You may want to consider Matthew Hall’s excellent XPTable and its update project, as well as Lee Paul Alexander’s fantastic Outlook-style list.

link|flag
vote up 0 vote down

Yes, but only in a owner-drawn listview.

EDIT

Check these links:

http://www.codeproject.com/KB/list/aa%5Flistview.aspx

http://www.codeproject.com/Messages/2857480/Multiline-listview.aspx

link|flag

Your Answer

Get an OpenID
or

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