C# Custom ListView - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:08:02Zhttp://stackoverflow.com/feeds/question/188248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188248/c-custom-listview3C# Custom ListViewTK2008-10-09T17:12:02Z2008-10-09T20:43:32Z
<p>Does anyone have any info on creating/drawing a customised ListView object?</p>
<p>Currently Im working on a project that requires a customised look and feel within the application. I am using a standard (Windows.Forms) ListView which is not in the same style as the rest of the GUI. We are NOT using a toolbox for custom controls, all controlls are 'skinned' inhouse as it were by overriding hte OnPaint() method for each control.</p>
<p>What Im looking for is:
- Information about how to handle drawing of the Scroll Bar.
- How to use customised drawing routines to handle the column headers.
- How to still handle the data shown and draw that correctly.</p>
<p>Any and all help would be greatly received.</p>
http://stackoverflow.com/questions/188248/c-custom-listview/188824#1888241Answer by Mitchel Sellers for C# Custom ListViewMitchel Sellers2008-10-09T19:30:20Z2008-10-09T19:30:20Z<p>From what I can tell you will need to actually make some Win32 calls using NM_CUSTOMDRAW to actually change the paint behavior of the control <a href="http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework.windowsforms/topic34342.aspx" rel="nofollow">Here is one</a> article I found. You are going to have to do a bit more digging.</p>
http://stackoverflow.com/questions/188248/c-custom-listview/189131#1891312Answer by Nick for C# Custom ListViewNick2008-10-09T20:43:32Z2008-10-09T20:43:32Z<p>Subclass <code>ListBox</code>. In the ctor, set the draw mode to <code>OwnerDrawVariable</code> and override <code>OnDrawItem</code> and <code>OnMeasureItem</code>. I like to have a special Item class which allows the user to specify any custom drawing for that item as well as an <code>object</code> which will be the data.</p>