hey, i facing a problem with RadDropDownButton, the dropdowncontext is RadContextMenu with only one radmenuitem, and this radmenuitem has two children,
the problem i have is so far, once the mouse go over the RadContextMenu, and then put it on top of its children item, and instead of click it, i drop the mouse outside of this control and click, RadContextMenu will auto close, but when i click RadDropDownButton again, that RadContextMenu will get force, and i cant open the children radmenuitem..
here is the code
cheers,
the problem i have is so far, once the mouse go over the RadContextMenu, and then put it on top of its children item, and instead of click it, i drop the mouse outside of this control and click, RadContextMenu will auto close, but when i click RadDropDownButton again, that RadContextMenu will get force, and i cant open the children radmenuitem..
here is the code
<
Grid
x:Name
=
"LayoutRoot"
>
<
telerik:RadDropDownButton
Name
=
"radbtn"
Width
=
"200"
Height
=
"30"
>
<
telerik:RadDropDownButton.DropDownContent
>
<
telerik:RadContextMenu
>
<
telerik:RadMenuItem
Header
=
"Test"
>
<
telerik:RadMenuItem
Header
=
"Click1"
/>
<
telerik:RadMenuItem
Header
=
"Click2"
/>
</
telerik:RadMenuItem
>
</
telerik:RadContextMenu
>
</
telerik:RadDropDownButton.DropDownContent
>
</
telerik:RadDropDownButton
>
</
Grid
>
cheers,