Hello,
I tried to insert a DropDown button into another one and the inner button is not possible to expand:
<telerikControls:RadDropDownButton Content="Drop down 1"
DropDownWidth="180">
<telerikControls:RadDropDownButton.DropDownContent>
<StackPanel Orientation="Vertical">
<telerikControls:RadDropDownButton Content="Drop down 2"
DropDownWidth="180">
<telerikControls:RadDropDownButton.DropDownContent>
<ListBox>
<ListBoxItem Content="Item 4" />
<ListBoxItem Content="Item 5" />
<ListBoxItem Content="Item 6" />
</ListBox>
</telerikControls:RadDropDownButton.DropDownContent>
</telerikControls:RadDropDownButton>
<ListBox>
<ListBoxItem Content="Item 1" />
<ListBoxItem Content="Item 2" />
<ListBoxItem Content="Item 3" />
</ListBox>
</StackPanel>
</telerikControls:RadDropDownButton.DropDownContent>
</telerikControls:RadDropDownButton>
Is it possible to make it work?