GestureRecognitionResult.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Ink / GestureRecognitionResult.cs / 1 / GestureRecognitionResult.cs

                            //---------------------------------------------------------------------------- 
//
// File: GestureRecognitionResult.cs
//
// Description: 
//      The implementation of GestureRecognitionResult class
// 
// Features: 
//
// History: 
//  01/14/2005 waynezen:       Created
//
// Copyright (C) 2001 by Microsoft Corporation.  All rights reserved.
// 
//---------------------------------------------------------------------------
 
using System; 

namespace System.Windows.Ink 
{
    /// 
    /// GestureRecognitionResult
    ///  
    public class GestureRecognitionResult
    { 
        //------------------------------------------------------------------------------- 
        //
        // Constructors 
        //
        //-------------------------------------------------------------------------------

        #region Constructors 

        internal GestureRecognitionResult(RecognitionConfidence confidence, ApplicationGesture gesture) 
        { 
            _confidence = confidence;
            _gesture = gesture; 
        }

        #endregion Constructors
 
        //--------------------------------------------------------------------------------
        // 
        // Public Properties 
        //
        //------------------------------------------------------------------------------- 

        #region Public Properties

        ///  
        /// RecognitionConfidence Proeprty
        ///  
        public RecognitionConfidence RecognitionConfidence 
        {
            get 
            {
                return _confidence;
            }
        } 

        ///  
        /// ApplicationGesture Property 
        /// 
        public ApplicationGesture ApplicationGesture 
        {
            get
            {
                return _gesture; 
            }
        } 
 
        #endregion Public Properties
 
        //--------------------------------------------------------------------------------
        //
        // Private Fields
        // 
        //--------------------------------------------------------------------------------
 
        #region Private Fields 

        private RecognitionConfidence   _confidence; 
        private ApplicationGesture      _gesture;

        #endregion Private Fields
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// File: GestureRecognitionResult.cs
//
// Description: 
//      The implementation of GestureRecognitionResult class
// 
// Features: 
//
// History: 
//  01/14/2005 waynezen:       Created
//
// Copyright (C) 2001 by Microsoft Corporation.  All rights reserved.
// 
//---------------------------------------------------------------------------
 
using System; 

namespace System.Windows.Ink 
{
    /// 
    /// GestureRecognitionResult
    ///  
    public class GestureRecognitionResult
    { 
        //------------------------------------------------------------------------------- 
        //
        // Constructors 
        //
        //-------------------------------------------------------------------------------

        #region Constructors 

        internal GestureRecognitionResult(RecognitionConfidence confidence, ApplicationGesture gesture) 
        { 
            _confidence = confidence;
            _gesture = gesture; 
        }

        #endregion Constructors
 
        //--------------------------------------------------------------------------------
        // 
        // Public Properties 
        //
        //------------------------------------------------------------------------------- 

        #region Public Properties

        ///  
        /// RecognitionConfidence Proeprty
        ///  
        public RecognitionConfidence RecognitionConfidence 
        {
            get 
            {
                return _confidence;
            }
        } 

        ///  
        /// ApplicationGesture Property 
        /// 
        public ApplicationGesture ApplicationGesture 
        {
            get
            {
                return _gesture; 
            }
        } 
 
        #endregion Public Properties
 
        //--------------------------------------------------------------------------------
        //
        // Private Fields
        // 
        //--------------------------------------------------------------------------------
 
        #region Private Fields 

        private RecognitionConfidence   _confidence; 
        private ApplicationGesture      _gesture;

        #endregion Private Fields
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK