| File: System\Windows\Ink\GestureRecognitionResult.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // Description: // The implementation of GestureRecognitionResult class namespace System.Windows.Ink { /// <summary> /// GestureRecognitionResult /// </summary> public class GestureRecognitionResult { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors internal GestureRecognitionResult(RecognitionConfidence confidence, ApplicationGesture gesture) { _confidence = confidence; _gesture = gesture; } #endregion Constructors //------------------------------------------------------------------------------- // // Public Properties // //------------------------------------------------------------------------------- #region Public Properties /// <summary> /// RecognitionConfidence Proeprty /// </summary> public RecognitionConfidence RecognitionConfidence { get { return _confidence; } } /// <summary> /// ApplicationGesture Property /// </summary> public ApplicationGesture ApplicationGesture { get { return _gesture; } } #endregion Public Properties //------------------------------------------------------------------------------- // // Private Fields // //------------------------------------------------------------------------------- #region Private Fields private RecognitionConfidence _confidence; private ApplicationGesture _gesture; #endregion Private Fields } }