Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

RecognitionConfidence Enumeration

 

Specifies the confidence level that the GestureRecognizer determines for a particular ink gesture.

Namespace:   System.Windows.Ink
Assembly:  PresentationCore (in PresentationCore.dll)

public enum RecognitionConfidence

Member nameDescription
Intermediate

Indicates intermediate confidence in the recognition result.

Poor

Indicates poor confidence in the recognition result.

Strong

Indicates strong confidence in the recognition result.

This class is not typically used in XAML.

The following example demonstrates how to identify a gesture on an InkCanvas. This example assumes that there is an InkCanvas called inkCanvas1 and that its Gesture event has been connected to the event handler in this example.

void inkCanvas1_Gesture(object sender, InkCanvasGestureEventArgs e)
{
    ReadOnlyCollection<GestureRecognitionResult> gestureResults = 
        e.GetGestureRecognitionResults();

    // Check the first recognition result for a gesture.
    if (gestureResults[0].RecognitionConfidence == 
        RecognitionConfidence.Strong)
    {
        switch (gestureResults[0].ApplicationGesture)
        {
            case ApplicationGesture.Down:
                // Do something.
                break;
            case ApplicationGesture.ArrowDown:
                // Do something.
                break;
            case ApplicationGesture.Circle:
                // Do something.
                break;
        }

    }
}

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft