public interface class ICommand
public interface ICommand
[System.ComponentModel.TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
public interface ICommand
[System.ComponentModel.TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
public interface ICommand
type ICommand = interface
[<System.ComponentModel.TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")>]
type ICommand = interface
[<System.ComponentModel.TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")>]
type ICommand = interface
Public Interface ICommand
Microsoft.Windows.Input.IPreviewCommand
RoutedCommand
和
RoutedUICommand
是 Windows Presentation Foundation (WPF) 中介面的兩個
ICommand
實作。
Windows 執行階段應用程式中的 ICommand
介面
ICommand
是針對Windows 執行階段應用程式以 .NET 撰寫之命令的程式碼合約。 這些命令提供 UI 元素的命令列為,例如Windows 執行階段 XAML
Button
,特別是
AppBarButton
。 如果您要定義Windows 執行階段應用程式的命令,您基本上會使用相同的技術來定義 .NET 應用程式的命令。 藉由定義實
ICommand
作 並特別實作 方法的類別來實作
Execute
命令。
Windows 執行階段的 XAML 不支援 x
:Static
,因此如果從 Windows 執行階段 XAML 使用 命令,請勿嘗試使用
x:Static
標記延伸。 此外,Windows 執行階段沒有任何預先定義的命令程式庫,因此此處顯示的 XAML 語法並不適用于您實作 介面並定義命令以使用Windows 執行階段。
XAML Attribute Usage
<
object property
=「
predefinedCommandName
」/>
<
object property
=「
predefinedClassName.predefinedCommandName
」/>
<
object property
=「{
customClassName.customCommandName
}」/>
XAML 值
predefinedClassName
其中一個預先定義的命令類別。
predefinedCommandName
其中一個預先定義的命令。
customClassName
包含自訂命令的自訂類別。 自訂類別通常需要
xlmns
前置詞對應;請參閱
WPF XAML 的 XAML 命名空間和命名空間對應
。
customCommandName
自訂命令。