Another way you can preserve the scroll position without external functions is using the TopNode property of the tree...
TopNode gets or sets the first fully-visible tree node in the tree view control.
If you just want to expand a node and have it preserve the top node:
TreeNode topNode = m_Tree.TopNode;
treenode.Expand();
m_Tree.TopNode = topNode;
Otherwise, if you are rebuilding a tree (such as refreshing a file structure), you can use the following method...
Before Clearing the tree, store the full path to the top node:
string topNodePath = null;
TreeNode topNode = null;
if (m_Tree.TopNode != null)
{
topNodePath = m_Tree.TopNode.FullPath;
}
m_Tree.Clear();
After adding a nodes, check its FullPath against the topNodePath:
nodes.Add(node)
if ((topNodePath != null) && (node.FullPath == topNodePath))
{
topNode = node;
}
After adding all nodes, update the tree's TopNode property:
if (topNode != null)
{
m_Tree.TopNode = topNode;
}
I use a similar technique for selected and expanded nodes.
SelectedNode works almost exactly as TopNode shown above.
For expanded nodes I use a recursive function to loop through the child nodes and add the path of expanded nodes to a list. Then expands them based on their path after the children have been added.
Of course, if you have a lot of sibling nodes with the same name, this might not work as well :-)