Is there a way to display multi-line text in standard Winforms listview control?
See Question&Answers more detail:osIs there a way to display multi-line text in standard Winforms listview control?
See Question&Answers more detail:osIf 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:
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.