spender
spender

Reputation: 120400

Pop open WPF Menu control programmatically

I'd like to open a WPF Menu when handling a click on a separate control. How?

Upvotes: 1

Views: 1258

Answers (1)

Andrei Pana
Andrei Pana

Reputation: 4502

Try:

myMenu.IsSubmenuOpen = true;

where myMenu is the name of the menu you want to open.

Upvotes: 1

Related Questions