目前,我的ListViews看起来像这样:
我如何实现下面的Windows 7本机外观?
这是在这里回答: 如何获得Windows本地查找.NET TreeView?
给定的解决方案适用于ListView和TreeView。
public class NativeListView : System.Windows.Forms.ListView { [DllImport("uxtheme.dll", CharSet = CharSet.Unicode)] private extern static int SetWindowTheme(IntPtr hWnd, string pszSubAppName, string pszSubIdList); protected override void CreateHandle() { base.CreateHandle(); SetWindowTheme(this.Handle, "explorer", null); } }