Posted 02 Dec 2011 Link to this post
Posted 06 Dec 2011 Link to this post
I prepared a project for you demonstrating a possible approach. Basically, I use the DropDownOpened event of the DropDownButton and the SelectionChanged event of the ListBox. Please let us know if this satisfies you.
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Posted 07 Dec 2011 Link to this post
private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (dropDownButtonOpened)
{ this.button.IsOpen = false; }
}
private void button_DropDownOpened(object sender, RoutedEventArgs e)
{ dropDownButtonOpened = true; button = sender as RadDropDownButton;
We are glad to hear that you have resolved this. Please feel free to ask if you need further assistance.