Declined
Last Updated: 08 Oct 2020 12:07 by Petar
Dinko
Created on: 03 Jul 2020 08:43
Category: RibbonView
Type: Bug Report
2
RibbonView: StackOverflowException is thrown when clicking on the group header and then click on a RibbonDropDownButton inside the DropDownContent of a collapsed RibbonDropDownButton
StackOverflowException is thrown when clicking on the group header and then click on a RibbonDropDownButton inside the DropDownContent of a collapsed RibbonDropDownButton.
2 comments
Petar
Posted on: 08 Oct 2020 12:07

Possible workaround is to handle LoastMouseCapture of the parent button:

private void DropDownButton_LostMouseCapture(object sender, MouseEventArgs e)
{
      e.Handled = true;
}
Petar
Posted on: 08 Oct 2020 10:02