コード例 #1
0
ファイル: Commands.cs プロジェクト: yungtau/oea
 public override bool CanExecute(ListLogicalView view)
 {
     return(view.CanAddItem() && view.Current != null && CommandsHelper.IsPlanning(view));
 }
コード例 #2
0
ファイル: TreeEditCommand.cs プロジェクト: yungtau/oea
 public override bool CanExecute(ListLogicalView view)
 {
     return(base.CanExecute(view) && view.CanAddItem() && view.Current != null);
 }
コード例 #3
0
ファイル: PopupAddCommand.cs プロジェクト: yungtau/oea
 public override bool CanExecute(ListLogicalView view)
 {
     return(view.CanAddItem());
 }