Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Input / Stylus / RawStylusActions.cs / 1 / RawStylusActions.cs
using System; namespace System.Windows.Input { ////// The raw actions being reported from the stylus. /// ////// Note that multiple actions can be reported at once. /// [Flags] internal enum RawStylusActions { ////// NoAction /// None = 0x000, ////// The stylus became active in the application. The application /// may need to refresh its stylus state. /// Activate = 0x001, ////// The stylus became inactive in the application. The application /// may need to clear its stylus state. /// Deactivate = 0x002, ////// The stylus just came in contact with the digitizer /// Down = 0x004, ////// The stylus just lost contact with the digitizer /// Up = 0x008, ////// The stylus is sending more data while in contact with the digitizer. /// Move = 0x010, ////// The stylus is sending more data while hovering in-air over the digitizer. /// InAirMove = 0x020, ////// The stylus is now in range of the digitizer. /// InRange = 0x040, ////// The stylus is now out of range of the digitizer. /// OutOfRange = 0x080, ////// The stylus is now out of range of the digitizer. /// SystemGesture = 0x100, } ////// Internal helper for validating RawStylusActions /// internal static class RawStylusActionsHelper { private static readonly RawStylusActions MaxActions = RawStylusActions.None | RawStylusActions.Activate | RawStylusActions.Deactivate | RawStylusActions.Down | RawStylusActions.Up | RawStylusActions.Move | RawStylusActions.InAirMove | RawStylusActions.InRange | RawStylusActions.OutOfRange | RawStylusActions.SystemGesture; internal static bool IsValid(RawStylusActions action) { if (action < RawStylusActions.None || action > MaxActions) { return false; } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; namespace System.Windows.Input { ////// The raw actions being reported from the stylus. /// ////// Note that multiple actions can be reported at once. /// [Flags] internal enum RawStylusActions { ////// NoAction /// None = 0x000, ////// The stylus became active in the application. The application /// may need to refresh its stylus state. /// Activate = 0x001, ////// The stylus became inactive in the application. The application /// may need to clear its stylus state. /// Deactivate = 0x002, ////// The stylus just came in contact with the digitizer /// Down = 0x004, ////// The stylus just lost contact with the digitizer /// Up = 0x008, ////// The stylus is sending more data while in contact with the digitizer. /// Move = 0x010, ////// The stylus is sending more data while hovering in-air over the digitizer. /// InAirMove = 0x020, ////// The stylus is now in range of the digitizer. /// InRange = 0x040, ////// The stylus is now out of range of the digitizer. /// OutOfRange = 0x080, ////// The stylus is now out of range of the digitizer. /// SystemGesture = 0x100, } ////// Internal helper for validating RawStylusActions /// internal static class RawStylusActionsHelper { private static readonly RawStylusActions MaxActions = RawStylusActions.None | RawStylusActions.Activate | RawStylusActions.Deactivate | RawStylusActions.Down | RawStylusActions.Up | RawStylusActions.Move | RawStylusActions.InAirMove | RawStylusActions.InRange | RawStylusActions.OutOfRange | RawStylusActions.SystemGesture; internal static bool IsValid(RawStylusActions action) { if (action < RawStylusActions.None || action > MaxActions) { return false; } return true; } } } // 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
- AsmxEndpointPickerExtension.cs
- HttpGetServerProtocol.cs
- GcSettings.cs
- WebConfigurationHost.cs
- CodeTryCatchFinallyStatement.cs
- Msec.cs
- SchemaMapping.cs
- IdleTimeoutMonitor.cs
- DrawToolTipEventArgs.cs
- HttpsChannelFactory.cs
- RoutingEndpointTrait.cs
- ComponentCollection.cs
- TrustLevelCollection.cs
- DataGridColumnCollectionEditor.cs
- Semaphore.cs
- GridViewColumnHeaderAutomationPeer.cs
- JpegBitmapEncoder.cs
- GradientSpreadMethodValidation.cs
- DataRelationPropertyDescriptor.cs
- CodeMemberMethod.cs
- Classification.cs
- ElementHost.cs
- RuntimeHelpers.cs
- EncodingNLS.cs
- ValidatorCollection.cs
- SBCSCodePageEncoding.cs
- XsdSchemaFileEditor.cs
- PerformanceCounter.cs
- SimpleHandlerBuildProvider.cs
- FontFamilyConverter.cs
- RayMeshGeometry3DHitTestResult.cs
- MeasureItemEvent.cs
- CultureInfo.cs
- RegexWriter.cs
- RelationshipType.cs
- CurrentTimeZone.cs
- LinqDataSourceUpdateEventArgs.cs
- GroupBoxRenderer.cs
- XmlSequenceWriter.cs
- FixedPosition.cs
- MdiWindowListStrip.cs
- XmlReader.cs
- ExplicitDiscriminatorMap.cs
- ExceptionValidationRule.cs
- ValidatorUtils.cs
- HTTPNotFoundHandler.cs
- FileDialogPermission.cs
- CallbackDebugBehavior.cs
- SafeNativeMethodsCLR.cs
- XmlSchemaAttributeGroupRef.cs
- Content.cs
- AssemblyFilter.cs
- UnhandledExceptionEventArgs.cs
- CheckBoxFlatAdapter.cs
- PrivateFontCollection.cs
- FileUtil.cs
- RefExpr.cs
- PixelFormat.cs
- GridViewSortEventArgs.cs
- bindurihelper.cs
- TitleStyle.cs
- SortExpressionBuilder.cs
- QueryStringParameter.cs
- IItemContainerGenerator.cs
- GuidTagList.cs
- SQLMembershipProvider.cs
- ExpandCollapseProviderWrapper.cs
- GuidConverter.cs
- ParameterCollectionEditorForm.cs
- PropertyMappingExceptionEventArgs.cs
- EntityDataSourceStatementEditorForm.cs
- ClientSponsor.cs
- DESCryptoServiceProvider.cs
- SupportingTokenChannel.cs
- CompilerLocalReference.cs
- GeometryDrawing.cs
- ModelTypeConverter.cs
- DashStyles.cs
- RoleManagerModule.cs
- X509Utils.cs
- ResourcesBuildProvider.cs
- ReaderWriterLock.cs
- TemplateInstanceAttribute.cs
- InArgument.cs
- SizeChangedInfo.cs
- Vector3DConverter.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- SqlRemoveConstantOrderBy.cs
- AttachedAnnotationChangedEventArgs.cs
- XmlCustomFormatter.cs
- StyleSheetRefUrlEditor.cs
- FormCollection.cs
- XmlReaderSettings.cs
- ApplicationSettingsBase.cs
- StrokeNodeEnumerator.cs
- XPathBinder.cs
- DataFormat.cs
- EdmFunctions.cs
- AffineTransform3D.cs
- _NetworkingPerfCounters.cs