Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / Stylus / StylusSystemGestureEventArgs.cs / 1305600 / StylusSystemGestureEventArgs.cs
using System; using System.Collections; using System.ComponentModel; using System.Windows.Media; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Input { ///////////////////////////////////////////////////////////////////////// ////// The StylusSystemGestureEventArgs class provides access to the logical /// Stylus device for all derived event args. /// public class StylusSystemGestureEventArgs : StylusEventArgs { ///////////////////////////////////////////////////////////////////// ////// Initializes a new instance of the StylusSystemGestureEventArgs class. /// /// /// The logical Stylus device associated with this event. /// /// /// The time when the input occured. /// /// /// The type of system gesture. /// public StylusSystemGestureEventArgs( StylusDevice stylusDevice, int timestamp, SystemGesture systemGesture) : base(stylusDevice, timestamp) { if (!RawStylusSystemGestureInputReport.IsValidSystemGesture(systemGesture, false, false)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "systemGesture")); } _id = systemGesture; } ///////////////////////////////////////////////////////////////////// ////// Initializes a new instance of the StylusSystemGestureEventArgs class. /// /// /// The logical Stylus device associated with this event. /// /// /// The time when the input occured. /// /// /// The type of system gesture. /// /// /// The X location reported with this system gesture. In tablet /// device coordinates. /// /// /// The Y location reported with this system gesture. In tablet /// device coordinates. /// /// /// The button state at the time of the system gesture. /// Note: A flick gesture will pass the flick data in the parameter. /// internal StylusSystemGestureEventArgs( StylusDevice stylusDevice, int timestamp, SystemGesture systemGesture, int gestureX, int gestureY, int buttonState) : base(stylusDevice, timestamp) { if (!RawStylusSystemGestureInputReport.IsValidSystemGesture(systemGesture, true, false)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "systemGesture")); } _id = systemGesture; _buttonState = buttonState; _gestureX = gestureX; _gestureY = gestureY; } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve which gesture occurred. /// public SystemGesture SystemGesture { get { return _id; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the button state reported with this /// system gesture. /// /// NOTE: For a Flick gesture this param contains the flick /// and not the button state. /// internal int ButtonState { get { return _buttonState; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the X location of the system gesture. /// This is in tablet device coordinates. /// internal int GestureX { get { return _gestureX; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the Y location of the system gesture. /// This is in tablet device coordinates. /// internal int GestureY { get { return _gestureY; } } ///////////////////////////////////////////////////////////////////// ////// 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) { StylusSystemGestureEventHandler handler = (StylusSystemGestureEventHandler) genericHandler; handler(genericTarget, this); } ///////////////////////////////////////////////////////////////////// SystemGesture _id; int _buttonState; int _gestureX; int _gestureY; } } // 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; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Input { ///////////////////////////////////////////////////////////////////////// ////// The StylusSystemGestureEventArgs class provides access to the logical /// Stylus device for all derived event args. /// public class StylusSystemGestureEventArgs : StylusEventArgs { ///////////////////////////////////////////////////////////////////// ////// Initializes a new instance of the StylusSystemGestureEventArgs class. /// /// /// The logical Stylus device associated with this event. /// /// /// The time when the input occured. /// /// /// The type of system gesture. /// public StylusSystemGestureEventArgs( StylusDevice stylusDevice, int timestamp, SystemGesture systemGesture) : base(stylusDevice, timestamp) { if (!RawStylusSystemGestureInputReport.IsValidSystemGesture(systemGesture, false, false)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "systemGesture")); } _id = systemGesture; } ///////////////////////////////////////////////////////////////////// ////// Initializes a new instance of the StylusSystemGestureEventArgs class. /// /// /// The logical Stylus device associated with this event. /// /// /// The time when the input occured. /// /// /// The type of system gesture. /// /// /// The X location reported with this system gesture. In tablet /// device coordinates. /// /// /// The Y location reported with this system gesture. In tablet /// device coordinates. /// /// /// The button state at the time of the system gesture. /// Note: A flick gesture will pass the flick data in the parameter. /// internal StylusSystemGestureEventArgs( StylusDevice stylusDevice, int timestamp, SystemGesture systemGesture, int gestureX, int gestureY, int buttonState) : base(stylusDevice, timestamp) { if (!RawStylusSystemGestureInputReport.IsValidSystemGesture(systemGesture, true, false)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "systemGesture")); } _id = systemGesture; _buttonState = buttonState; _gestureX = gestureX; _gestureY = gestureY; } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve which gesture occurred. /// public SystemGesture SystemGesture { get { return _id; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the button state reported with this /// system gesture. /// /// NOTE: For a Flick gesture this param contains the flick /// and not the button state. /// internal int ButtonState { get { return _buttonState; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the X location of the system gesture. /// This is in tablet device coordinates. /// internal int GestureX { get { return _gestureX; } } ///////////////////////////////////////////////////////////////////// ////// Field to retrieve the Y location of the system gesture. /// This is in tablet device coordinates. /// internal int GestureY { get { return _gestureY; } } ///////////////////////////////////////////////////////////////////// ////// 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) { StylusSystemGestureEventHandler handler = (StylusSystemGestureEventHandler) genericHandler; handler(genericTarget, this); } ///////////////////////////////////////////////////////////////////// SystemGesture _id; int _buttonState; int _gestureX; int _gestureY; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextDecorations.cs
- WebControlsSection.cs
- ArraySortHelper.cs
- SmiMetaDataProperty.cs
- __Error.cs
- ListViewGroupConverter.cs
- OdbcConnectionPoolProviderInfo.cs
- DbConnectionClosed.cs
- RelatedEnd.cs
- Rotation3DKeyFrameCollection.cs
- SerializableAttribute.cs
- FormViewModeEventArgs.cs
- CompositionDesigner.cs
- StylusPointPropertyInfoDefaults.cs
- DecimalAnimation.cs
- LineServicesCallbacks.cs
- DataRelationCollection.cs
- SourceInterpreter.cs
- XmlValidatingReaderImpl.cs
- indexingfiltermarshaler.cs
- XPathExpr.cs
- StdValidatorsAndConverters.cs
- DescendentsWalkerBase.cs
- BitStream.cs
- ViewPort3D.cs
- EncoderFallback.cs
- XsltArgumentList.cs
- DesignerTextWriter.cs
- RotateTransform3D.cs
- TdsEnums.cs
- OdbcFactory.cs
- HashSetDebugView.cs
- ExpressionPrinter.cs
- XmlCollation.cs
- Model3D.cs
- MetaModel.cs
- TextTrailingCharacterEllipsis.cs
- ServerValidateEventArgs.cs
- XmlQueryStaticData.cs
- RepeatButton.cs
- ValidationHelper.cs
- ClockController.cs
- BooleanAnimationUsingKeyFrames.cs
- Size.cs
- PackageDigitalSignatureManager.cs
- TextTreeDeleteContentUndoUnit.cs
- ChildChangedEventArgs.cs
- RtfToXamlLexer.cs
- NonVisualControlAttribute.cs
- PrintingPermissionAttribute.cs
- DockingAttribute.cs
- OutputCacheSettingsSection.cs
- FileLogRecord.cs
- SectionRecord.cs
- StrokeCollection2.cs
- FromReply.cs
- future.cs
- Matrix3D.cs
- SqlProcedureAttribute.cs
- SimplePropertyEntry.cs
- SingleObjectCollection.cs
- PrivilegeNotHeldException.cs
- ReferencedAssemblyResolver.cs
- DataGridColumnHeadersPresenter.cs
- PageAsyncTask.cs
- StrokeDescriptor.cs
- ZipFileInfo.cs
- PreviousTrackingServiceAttribute.cs
- DataGridRow.cs
- DetailsViewCommandEventArgs.cs
- NativeMethods.cs
- AuthenticationServiceManager.cs
- Rotation3D.cs
- UIPermission.cs
- RepeaterItem.cs
- ProfilePropertySettings.cs
- ValidatedControlConverter.cs
- ConstraintEnumerator.cs
- TextStore.cs
- RoleManagerModule.cs
- dtdvalidator.cs
- EventLogEntry.cs
- SizeConverter.cs
- SetStateEventArgs.cs
- SystemUdpStatistics.cs
- JsonByteArrayDataContract.cs
- CodeTypeMember.cs
- KeyBinding.cs
- SerializationObjectManager.cs
- Cursors.cs
- ReflectTypeDescriptionProvider.cs
- GeometryGroup.cs
- QuaternionRotation3D.cs
- UrlAuthorizationModule.cs
- NavigationWindowAutomationPeer.cs
- FontFamily.cs
- WebServiceBindingAttribute.cs
- QilList.cs
- StreamWithDictionary.cs
- PresentationAppDomainManager.cs