如何让Windows本机查找.NET TreeView?

时间:2011-02-27 04:52:49

标签: .net windows winforms treeview

Trees

在.NET中使用TreeView组件时,我会看到左侧树的外观。 如何为我的.NET TreeView获取正确树(Windows Native Look)的外观?

我特别想要的是“三角形”节点手柄和蓝色“气泡”选择方块。

1 个答案:

答案 0 :(得分:42)

你需要P / Invoke来调用SetWindowTheme传递树的窗口句柄并使用“explorer”作为主题。

将以下代码粘贴到项目的新类中,编译并使用此自定义控件而不是内置的TreeView控件。

C#:

public class NativeTreeView : System.Windows.Forms.TreeView
{
    [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);
    }
}

VB.NET:

Public Class NativeTreeView : Inherits TreeView

    Private Declare Unicode Function SetWindowTheme Lib "uxtheme.dll"
        (hWnd As IntPtr, pszSubAppName As String, pszSubIdList As String) As Integer

    Protected Overrides Sub CreateHandle()
        MyBase.CreateHandle()
        SetWindowTheme(Me.Handle, "Explorer", Nothing)
    End Sub

End Class

请注意,此技巧对ListView控件的工作方式也完全相同。