Completed
Last Updated: 09 Oct 2020 13:24 by ADMIN
Release LIB 2020.3.1012
ADMIN
Martin Ivanov
Created on: 16 Jun 2017 08:50
Category: Buttons
Type: Bug Report
3
Buttons: StackOverflowException when pressing a RadDropDownButton hosted in the DropDownContent of another RadDropDownButton
A StackOverflowException occurs when you press a RadDropDownButton placed into the DropDownContent of another RadDropButton.

To work this around, subscribe for the LostMouseCapture event of the parent drop down button and handle it.

private void DropDownButton_LostMouseCapture(object sender, MouseEventArgs e)
{
      e.Handled = true;
}
0 comments