Raise context menu command's CanExcute while open the context menu
问题 Can Execute of a ICommand while a Context menu open With the continuation of the above query, Still its not able to achieve. Is there any way to raise context menu command's CanExcute while open the context menu. This need to be done in the context menu itself and here am not able to access the viewmodel. Any idea on this? public static BaseCommand SaveCommand { get { if (saveCommand == null) saveCommand = new BaseCommand(OnSaveCommandClicked, OnSaveCommandCanExcute); return saveCommand; } }