How to set AutoScrolling in WinForms TreeViewAdv during DragDrop?
AutoScrolling
The
user can scroll the TreeViewAdv, when an item is dragged from out of the current view to the top. When item is dragged to the top of the TreeView control it scrolls by using the AutoScroll property.
C#
this.treeViewAdv1.AutoScrolling = ScrollBars.Both;
VB
Me.treeViewAdv1.AutoScrolling = ScrollBars.Both