共用方式為


ThumbButtonInfo.Command 屬性

定義

取得或設定按一下這個縮圖按鈕時要叫用的命令。

public:
 property System::Windows::Input::ICommand ^ Command { System::Windows::Input::ICommand ^ get(); void set(System::Windows::Input::ICommand ^ value); };
public System.Windows.Input.ICommand Command { get; set; }
member this.Command : System.Windows.Input.ICommand with get, set
Public Property Command As ICommand

屬性值

當按一下這個縮圖按鈕時所要叫用的命令。 預設為 null

範例

下列範例示範如何在標記中建立 ThumbButtonInfo 。 系 ThumbButtonInfo 結至 MediaCommands.Stop 命令。 此範例是針對 類別提供的較大範例的 TaskbarItemInfo 一部分。

<ThumbButtonInfo
    DismissWhenClicked="True"
    Command="MediaCommands.Stop"
    CommandTarget="{Binding ElementName=btnStop}"
    Description="Stop"
    ImageSource="{StaticResource ResourceKey=StopImage}"/>

備註

如果您處理 Click 事件,事件處理常式會執行,而不是系結至縮圖按鈕的任何 Command

在 XAML 中,此屬性通常會設定為來自其中一個現有命令程式庫的靜態命令值,例如 或 連結 ApplicationCommandsNavigationCommands 庫。

適用於

另請參閱