XamlUICommand.CanExecute(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索命令是否可以在其当前状态下执行。
public:
virtual bool CanExecute(Platform::Object ^ parameter) = CanExecute;
bool CanExecute(IInspectable const& parameter);
public bool CanExecute(object parameter);
function canExecute(parameter)
Public Function CanExecute (parameter As Object) As Boolean
参数
- parameter
-
Object
Platform::Object
IInspectable
此命令使用的数据。 如果命令不需要数据,则可以将此对象设置为 null
。
返回
Boolean
bool
如果可执行此命令,则为 true
;否则为 false
。
实现
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(System.Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(Platform::Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(IInspectable)
注解
当引发 CanExecuteChanged 事件时,命令源通常会调用此方法。