This question is locked. New answers and comments are not allowed.
Hi,
I'm using the RadDropDownButton with a drop down content template to show a UserControl. I want the UserControl get focused on dropdown opened. I've tried the following code, but the DropDownContent property always return null.
dropDownBtn.DropDownOpened += (o, e) =>
{
(dropDownBtn.DropDownContent as UserControl).Focus();
};