在.NET中使用TreeView组件时,我会看到左侧树的外观。 如何为我的.NET TreeView获取正确树(Windows Native Look)的外观?
我特别想要的是“三角形”节点手柄和蓝色“气泡”选择方块。
答案 0 :(得分:42)
你需要P / Invoke来调用SetWindowTheme
传递树的窗口句柄并使用“explorer”作为主题。
将以下代码粘贴到项目的新类中,编译并使用此自定义控件而不是内置的TreeView
控件。
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);
}
}
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
控件的工作方式也完全相同。