Hi,
I have a RadTreeView inside RadDropDownButton.DropDownContent.
What I want to achive is to reorder TreeView Items inside the dropdowncontent. I testet my behaviour having only a TreeView - this works. Now when I put the TreeView in the RadDropDownButton.DropDownContent, dragging does not work any more on the TreeView.
<
telerik:RadDropDownButton
Height
=
"26"
AutoOpenDelay
=
"0:0:0.0"
Content
=
"Click"
IsOpen
=
"True"
>
<
telerik:RadDropDownButton.DropDownContent
>
<
telerik:RadTreeView
x:Name
=
"xTreeView"
Margin
=
"8"
IsDragDropEnabled
=
"True"
ItemTemplate
=
"{StaticResource League}"
ItemsSource
=
"{Binding Source={StaticResource DataSource}, Path=LeagueObjects}"
/>
</
telerik:RadDropDownButton.DropDownContent
>
</
telerik:RadDropDownButton
>