RoutedCommand.ICommand.CanExecute(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
有关此成员的说明,请参见 CanExecute(Object)。
virtual bool System.Windows.Input.ICommand.CanExecute(System::Object ^ parameter) = System::Windows::Input::ICommand::CanExecute;
[System.Security.SecurityCritical]
bool ICommand.CanExecute (object parameter);
bool ICommand.CanExecute (object parameter);
[<System.Security.SecurityCritical>]
abstract member System.Windows.Input.ICommand.CanExecute : obj -> bool
override this.System.Windows.Input.ICommand.CanExecute : obj -> bool
abstract member System.Windows.Input.ICommand.CanExecute : obj -> bool
override this.System.Windows.Input.ICommand.CanExecute : obj -> bool
Function CanExecute (parameter As Object) As Boolean Implements ICommand.CanExecute
参数
- parameter
- Object
此命令使用的数据。 如果此命令不需要传递数据,则该对象可以设置为 null
。
返回
如果可执行此命令,则为 true
;否则为 false
。
实现
- 属性
注解
此成员是显式接口成员的实现。 它只能在 RoutedCommand 实例被强制转换为 ICommand 接口时使用。