This question is locked. New answers and comments are not allowed.
Here's the situation (pseudo xaml):
I'm trying to simulate a context menu here. The idea is to set IsOpen to true on the popup when a row in a data grid is clicked, and then position the menu in relation to the canvas. Then when the Canvas is clicked I hide the popup. But after upgrading to version Q2 the entire popup appears behind the parent RadWindow. In the previous version this was not a problem. I'm guessing that this has something to do with the new layout model that you've introduced for the window component.
| <RadWindow> |
| [A bunch of stuff here] |
| <Popup> |
| <Canvas> |
| <RadMenu></RadMenu> |
| </Canvas> |
| </Popup> |
| </RadWindow> |
I'm trying to simulate a context menu here. The idea is to set IsOpen to true on the popup when a row in a data grid is clicked, and then position the menu in relation to the canvas. Then when the Canvas is clicked I hide the popup. But after upgrading to version Q2 the entire popup appears behind the parent RadWindow. In the previous version this was not a problem. I'm guessing that this has something to do with the new layout model that you've introduced for the window component.