If you want your ListView have a Windows ListView Explorer style (including a nice rounded look in Win7 / Vista), you could use a little P / Invoke to do this:
[DllImport("uxtheme.dll", CharSet = CharSet.Unicode, ExactSpelling = true)] internal static extern int SetWindowTheme(IntPtr hWnd, string appName, string partList);
Zach johnson
source share