I have two Menu items in a wpf context, I bind them with command, how do I hide context menu when both items are n开发者_运维百科ot available, I mean when both commands cannot be executed?
Add an event handler for ContextMenuOpening event. Set Handled property in ContextMenuEventArgs object to true and the context menu will not open.
精彩评论