Reputation: 120400
I'd like to open a WPF Menu when handling a click on a separate control. How?
Upvotes: 1
Views: 1258
Reputation: 4502
Try:
myMenu.IsSubmenuOpen = true;
where myMenu is the name of the menu you want to open.