.NET ListView 的 Windows 7 本机查找

发布于 2024-10-18 11:11:31 字数 199 浏览 2 评论 0原文

目前,我的 ListView 看起来像这样:

在此处输入图像描述

如何实现下面的 Windows 7 本机外观?

在此处输入图像描述

Currently, my ListViews look like this:

enter image description here

How can I achieve that Windows 7 native look below?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月静好 2024-10-25 11:11:31

此处回答了这个问题:如何获取 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);
    }
}

This was answered here: How to get Windows native look for the .NET TreeView?

The given solution works for both for the ListView and the 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);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文