22

我知道通过添加 TreeView.BeginUpdate 将防止树视图闪烁,但是当我将它添加到我的项目中时,我的树视图的所有节点都消失了,任何人都可以告诉我为什么会发生,这是我使用 TreeView 的代码片段.BeginUpdate 和 TreeView.EndUpdate

  TreeNode treeNode = new TreeNode("Windows");
        treeView1.Nodes.Add(treeNode);
        //
        // Another node following the first node.
        //
        treeNode = new TreeNode("Linux");
        treeView1.Nodes.Add(treeNode);
        //
        // Create two child nodes and put them in an array.
        // ... Add the third node, and specify these as its children.
        //
        TreeNode node2 = new TreeNode("C#");
        TreeNode node3 = new TreeNode("VB.NET");
        TreeNode[] array = new TreeNode[] { node2, node3 };
        //
        // Final node.
        //
        treeNode = new TreeNode("Dot Net Perls", array);
        treeView1.Nodes.Add(treeNode);
4

2 回答 2

88

Begin/EndUpdate() 方法是并非旨在消除闪烁。在 EndUpdate() 处闪烁是不可避免的,它会重新绘制控件。它们旨在加速添加大量节点,默认情况下会很慢,因为每个项目都会导致重绘。通过将它们放在 for 循环中,将它们移到外部以立即改进,您使情况变得更糟。

这可能足以解决您的问题。但是你可以做得更好,抑制闪烁需要双缓冲。.NET TreeView 类覆盖 DoubleBuffered 属性和其隐藏。这是一个历史意外,原生 Windows 控件仅在 Windows XP 及更高版本中支持双缓冲。.NET 曾经支持 Windows 2000 和 Windows 98。

如今,这不再完全相关。您可以通过从 TreeView 派生您自己的类来将其放回原处。向您的项目添加一个新类并粘贴如下所示的代码。编译。将新控件从工具箱顶部拖放到窗体上,替换现有的 TreeView。效果非常明显,尤其是在滚动时。

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;

class BufferedTreeView : TreeView {
    protected override void OnHandleCreated(EventArgs e) {
       SendMessage(this.Handle, TVM_SETEXTENDEDSTYLE, (IntPtr)TVS_EX_DOUBLEBUFFER, (IntPtr)TVS_EX_DOUBLEBUFFER);
        base.OnHandleCreated(e);
    }
    // Pinvoke:
    private const int TVM_SETEXTENDEDSTYLE = 0x1100 + 44;
    private const int TVM_GETEXTENDEDSTYLE = 0x1100 + 45;
    private const int TVS_EX_DOUBLEBUFFER = 0x0004;
    [DllImport("user32.dll")]
    private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);
}
于 2012-04-28T14:11:59.880 回答
2

如果您像我一样是新手并且在 vb.net 中需要它,这里是 @Hans Passant 答案。我使用了它,变化非常显着

Protected Overrides Sub OnHandleCreated(ByVal e As EventArgs)
    SendMessage(Me.Handle, TVM_SETEXTENDEDSTYLE, CType(TVS_EX_DOUBLEBUFFER, IntPtr), CType(TVS_EX_DOUBLEBUFFER, IntPtr))
    MyBase.OnHandleCreated(e)
End Sub

Private Const TVM_SETEXTENDEDSTYLE As Integer = &H1100 + 44
Private Const TVM_GETEXTENDEDSTYLE As Integer = &H1100 + 45
Private Const TVS_EX_DOUBLEBUFFER As Integer = &H4
<DllImport("user32.dll")>
Private Shared Function SendMessage(ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wp As IntPtr, ByVal lp As IntPtr) As IntPtr
End Function
于 2020-05-27T10:49:02.240 回答