CK.WPF.Controls.SimpleCommand.CanExecute C# (CSharp) Method

CanExecute() private method

private CanExecute ( object parameter ) : bool
parameter object
return bool
        public bool CanExecute( object parameter )
        {
            return _canExecute == null ? true : _canExecute();
        }