Hi, I have an Application Menu within this structure:
<telerik:RadRibbonView> <telerik:RadRibbonView.ApplicationMenu > <telerik:ApplicationMenu> <telerik:ApplicationMenu.Content> <Grid>...
In the code behind I fill the grid with an child of an RadTeeView:
RadTreeView tree = new RadTreeView();tree.Items.Add(myTree);myGrid.Children.Add(tree);
So far so good, every thing is working fine.
But how can I prevent that the menu closes when I left click (MouseDown) on the menu or the main window?
The Application Menu did not close when I left click on the:
-root element from my tree
-plus/arrow icon of on tree node
-element which was selected on the last visit
It would be nice to handle the closing of the app-menu by my self, is this possible?
