InputGestureCollection.Add(InputGesture) Méthode
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.
Ajoute le InputGesture spécifié à ce InputGestureCollection.
public:
int Add(System::Windows::Input::InputGesture ^ inputGesture);
public int Add (System.Windows.Input.InputGesture inputGesture);
member this.Add : System.Windows.Input.InputGesture -> int
Public Function Add (inputGesture As InputGesture) As Integer
Paramètres
- inputGesture
- InputGesture
Mouvement à ajouter à la collection.
Retours
0 si l’opération a abouti (notez qu’il ne s’agit pas de l’index de l’élément ajouté).
Exceptions
La collection est en lecture seule.
Le mouvement est null
.
Exemples
L’exemple suivant crée un KeyGesture et l’ajoute InputGestureCollection au d’un RoutedCommand.
<Window.InputBindings>
<KeyBinding Key="B"
Modifiers="Control"
Command="ApplicationCommands.Open" />
</Window.InputBindings>
KeyGesture OpenCmdKeyGesture = new KeyGesture(
Key.B,
ModifierKeys.Control);
ApplicationCommands.Open.InputGestures.Add(OpenCmdKeyGesture);
Dim OpenCmdKeyGesture As New KeyGesture(Key.B, ModifierKeys.Control)
ApplicationCommands.Open.InputGestures.Add(OpenCmdKeyGesture)