Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi-line list items on WinForms ListView control?

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

like image 902
Kemal Erdogan Avatar asked Nov 04 '09 14:11

Kemal Erdogan


1 Answers

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.

like image 117
Grammarian Avatar answered Sep 19 '22 10:09

Grammarian