StylusDownEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / Stylus / StylusDownEventArgs.cs / 1305600 / StylusDownEventArgs.cs

                            using System; 
using System.Collections;
using System.ComponentModel;
using System.Windows.Media;
 
namespace System.Windows.Input
{ 
    ///////////////////////////////////////////////////////////////////////// 
    /// 
    ///Event argument used to subscribe to StylusDown events. 
    /// 
    public class StylusDownEventArgs : StylusEventArgs
    {
        ///////////////////////////////////////////////////////////////////// 
        /// 
        ///     Initializes a new instance of the StylusDownEventArgs class. 
        ///  
        /// 
        ///     The logical Stylus device associated with this event. 
        /// 
        /// 
        ///     The time when the input occured.
        ///  
        public StylusDownEventArgs(
            StylusDevice stylusDevice, int timestamp) 
            : 
            base(stylusDevice, timestamp)
        { 
        }

        /// 
        ///     Read access to the stylus tap count. 
        /// 
        public int TapCount 
        { 
            get {return StylusDevice.TapCount;}
        } 

        /////////////////////////////////////////////////////////////////////
        /// 
        ///     The mechanism used to call the type-specific handler on the 
        ///     target.
        ///  
        ///  
        ///     The generic handler to call in a type-specific way.
        ///  
        /// 
        ///     The target to call the handler on.
        /// 
        protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) 
        {
            StylusDownEventHandler handler = (StylusDownEventHandler)genericHandler; 
            handler(genericTarget, this); 
        }
 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections;
using System.ComponentModel;
using System.Windows.Media;
 
namespace System.Windows.Input
{ 
    ///////////////////////////////////////////////////////////////////////// 
    /// 
    ///Event argument used to subscribe to StylusDown events. 
    /// 
    public class StylusDownEventArgs : StylusEventArgs
    {
        ///////////////////////////////////////////////////////////////////// 
        /// 
        ///     Initializes a new instance of the StylusDownEventArgs class. 
        ///  
        /// 
        ///     The logical Stylus device associated with this event. 
        /// 
        /// 
        ///     The time when the input occured.
        ///  
        public StylusDownEventArgs(
            StylusDevice stylusDevice, int timestamp) 
            : 
            base(stylusDevice, timestamp)
        { 
        }

        /// 
        ///     Read access to the stylus tap count. 
        /// 
        public int TapCount 
        { 
            get {return StylusDevice.TapCount;}
        } 

        /////////////////////////////////////////////////////////////////////
        /// 
        ///     The mechanism used to call the type-specific handler on the 
        ///     target.
        ///  
        ///  
        ///     The generic handler to call in a type-specific way.
        ///  
        /// 
        ///     The target to call the handler on.
        /// 
        protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) 
        {
            StylusDownEventHandler handler = (StylusDownEventHandler)genericHandler; 
            handler(genericTarget, this); 
        }
 
    }
}

// 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