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 事件時呼叫這個方法。