如何避免在树状视图中闪烁
当节点的某些属性正在更新时,
或添加节点

最佳答案

请尝试以下操作:

try
{
    treeView.BeginUpdate();

    // Update your tree view.
}
finally
{
    treeView.EndUpdate();
}

关于c# - 如何避免在树形 View 中闪烁,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4132137/

10-11 02:09