C# Custom ListView - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:08:02Z http://stackoverflow.com/feeds/question/188248 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188248/c-custom-listview 3 C# Custom ListView TK 2008-10-09T17:12:02Z 2008-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#188824 1 Answer by Mitchel Sellers for C# Custom ListView Mitchel Sellers 2008-10-09T19:30:20Z 2008-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#189131 2 Answer by Nick for C# Custom ListView Nick 2008-10-09T20:43:32Z 2008-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>