ThumbButtonInfo.Command Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la commande à appeler en cas de clic sur ce bouton de miniature.
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
Valeur de propriété
Commande à appeler en cas de clic sur ce bouton de miniature. La valeur par défaut est null
.
Exemples
L’exemple suivant montre comment créer un dans le ThumbButtonInfo balisage. est ThumbButtonInfo lié à la MediaCommands.Stop commande . Cet exemple fait partie d’un exemple plus grand fourni pour la TaskbarItemInfo classe .
<ThumbButtonInfo
DismissWhenClicked="True"
Command="MediaCommands.Stop"
CommandTarget="{Binding ElementName=btnStop}"
Description="Stop"
ImageSource="{StaticResource ResourceKey=StopImage}"/>
Remarques
Si vous gérez l’événement Click , le gestionnaire d’événements s’exécute au lieu de celui Command lié au bouton miniature.
En XAML, cette propriété est souvent définie sur une valeur de commande statique provenant de l’une des bibliothèques de commandes existantes, par exemple à partir de la ApplicationCommands bibliothèque ou NavigationCommands .