GestureRecognizer.SetEnabledGestures Método

Definición

Establece los gestos de aplicación que reconoce.GestureRecognizer

public:
 void SetEnabledGestures(System::Collections::Generic::IEnumerable<System::Windows::Ink::ApplicationGesture> ^ applicationGestures);
public void SetEnabledGestures(System.Collections.Generic.IEnumerable<System.Windows.Ink.ApplicationGesture> applicationGestures);
member this.SetEnabledGestures : seq<System.Windows.Ink.ApplicationGesture> -> unit
Public Sub SetEnabledGestures (applicationGestures As IEnumerable(Of ApplicationGesture))

Parámetros

applicationGestures
IEnumerable<ApplicationGesture>

Matriz de tipo ApplicationGesture que especifica los gestos de aplicación que desea GestureRecognizer reconocer.

Ejemplos

En el ejemplo siguiente se muestra cómo crear un GestureRecognizer objeto que reconozca solo los Downgestos , Righty ScratchOut .

ApplicationGesture[] gestures = {ApplicationGesture.Down,
    ApplicationGesture.Right, ApplicationGesture.ScratchOut};

GestureRecognizer recognizer = new GestureRecognizer();

recognizer.SetEnabledGestures(gestures);
' Declare and initialize an array of application gestures.
Dim gestures As ApplicationGesture() = _
    {ApplicationGesture.Down, _
     ApplicationGesture.Right, _
     ApplicationGesture.Scratchout}

Dim recognizer As New GestureRecognizer()

recognizer.SetEnabledGestures(gestures)

Se aplica a