This question is locked. New answers and comments are not allowed.
Hello,
i have a problem with drag and dropping in a treeview. I am using 2012 Q1. When i drag an item to the bottom or top of the treeview i expect the treeview to scroll up or down. This doesn't happens. My code is.
public
MainPage()
{
InitializeComponent();
var itemsSource = Enumerable.Range(1, 100).Select(i =>
"Item "
+ i).ToList();
tree.ItemsSource = itemsSource;
}
and
<
UserControl
x:Class
=
"RadDrop.MainPage"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable
=
"d"
d:DesignWidth
=
"640"
d:DesignHeight
=
"480"
>
<
Grid
x:Name
=
"LayoutRoot"
>
<
telerik:RadTreeView
x:Name
=
"tree"
IsDragDropEnabled
=
"True"
>
</
telerik:RadTreeView
>
</
Grid
>
</
UserControl
>
how can i turn on this behavior.
kind regards,
Jonam