Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
558
Combo Editor in the xamRibbon
posted

I have combo box that I've templated to have a collection of check boxes.  When I put it in a standard grid, the drop down remains open as I select and deselect the check boxes.  Once I used it in the xamRibbon, the drop down closes as soon as you select any check box.  Is there a ribbon tool available in the standard tool kit that will mimic my templated combo box?

Parents
No Data
Reply
  • 54937
    Offline posted

    By default all ButtonBase elements invoke FocusManager.Focus(null) when they are focused and the click is invoked. That causes the WPF framework to shift focus out of the focus scope (the menu/ribbon) and back to the root focus scope. You could try setting Focusable to false on the checkboxes.

Children