Dear Team,
I want to drag and drop items to before/after/drop inside the treeviewitem. i can able to drag and drop before/after the item but not able to drop inside the treeview item. please refer the below xaml script and the attached screenshot for more info. please help to sort this problem. How i could able to drop the item inside another(Parent-child pattern).
<
telerik:RadTreeView
x:Name
=
"xTreeView"
ItemsSource
=
"{Binding Categories,Mode=TwoWay}"
mouse:MouseDoubleClick.Command
=
"{Binding ShowItemCommand}"
mouse:MouseDoubleClick.CommandParameter
=
"{Binding ElementName=xTreeView,Path=SelectedItem}"
IsDragDropEnabled
=
"True"
telerik:PersistenceManager.StorageId
=
"{Binding test,Mode=TwoWay}"
>
<
telerik:RadTreeView.ItemTemplate
>
<
HierarchicalDataTemplate
>
<
StackPanel
Orientation
=
"Horizontal"
>
<
CheckBox
IsChecked
=
"{Binding IsChecked, Mode=TwoWay}"
telerik:StyleManager.Theme
=
"Office_Black"
/>
<
TextBlock
VerticalAlignment
=
"Center"
Text
=
"{Binding Name}"
/>
<
TextBlock
Text
=
"{Binding InfoTabItemsSourcePath}"
Visibility
=
"Hidden"
/>
</
StackPanel
>
</
HierarchicalDataTemplate
>
</
telerik:RadTreeView.ItemTemplate
>
</
telerik:RadTreeView
>
Thank you.
Regards,
Prabakaran