views:

36

answers:

1

I have two Menu items in a wpf context, I bind them with command, how do I hide context menu when both items are not available, I mean when both commands cannot be executed?

A: 

Add an event handler for ContextMenuOpening event. Set Handled property in ContextMenuEventArgs object to true and the context menu will not open.

Wallstreet Programmer