Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / Stylus / RawStylusActions.cs / 1305600 / 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
- DBSqlParser.cs
- BitStream.cs
- Formatter.cs
- InternalControlCollection.cs
- ProxySimple.cs
- CachedRequestParams.cs
- TypeDependencyAttribute.cs
- Transform3D.cs
- ParameterSubsegment.cs
- WeakKeyDictionary.cs
- DigestTraceRecordHelper.cs
- Page.cs
- DaylightTime.cs
- AssemblyBuilder.cs
- ValidationPropertyAttribute.cs
- Bits.cs
- RawTextInputReport.cs
- ResourceDictionary.cs
- UserControlParser.cs
- ActiveXHost.cs
- RemoteCryptoRsaServiceProvider.cs
- CodeThrowExceptionStatement.cs
- PriorityBindingExpression.cs
- StylusTouchDevice.cs
- QueryCursorEventArgs.cs
- IItemProperties.cs
- CatalogZone.cs
- DocumentAutomationPeer.cs
- ByteAnimationUsingKeyFrames.cs
- TextBox.cs
- XslTransform.cs
- GregorianCalendarHelper.cs
- ZoomPercentageConverter.cs
- XDRSchema.cs
- UIElement3D.cs
- DbProviderManifest.cs
- Operand.cs
- ConstraintManager.cs
- XmlSchemaAttribute.cs
- RSAPKCS1KeyExchangeFormatter.cs
- EntryIndex.cs
- DefaultObjectMappingItemCollection.cs
- HMACSHA384.cs
- PackagePartCollection.cs
- ScriptControlManager.cs
- ConfigXmlElement.cs
- StickyNoteContentControl.cs
- MaskDescriptors.cs
- TypeNameConverter.cs
- TypeConverter.cs
- GridProviderWrapper.cs
- ListViewSortEventArgs.cs
- CfgParser.cs
- FilterUserControlBase.cs
- SoapElementAttribute.cs
- PeerContact.cs
- WriteFileContext.cs
- RestHandlerFactory.cs
- TextBox.cs
- VirtualizedContainerService.cs
- KeyedHashAlgorithm.cs
- CellLabel.cs
- LogStore.cs
- BinaryKeyIdentifierClause.cs
- AlphaSortedEnumConverter.cs
- ComponentDispatcherThread.cs
- WeakReference.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- ListBindingConverter.cs
- ParameterModifier.cs
- EntityException.cs
- ImplicitInputBrush.cs
- ActiveDocumentEvent.cs
- LocalValueEnumerator.cs
- SafeNativeMethods.cs
- AttachedAnnotationChangedEventArgs.cs
- RelatedCurrencyManager.cs
- regiisutil.cs
- DBCommand.cs
- InitializationEventAttribute.cs
- HtmlSelectionListAdapter.cs
- DefaultTypeArgumentAttribute.cs
- MsmqAppDomainProtocolHandler.cs
- Latin1Encoding.cs
- SqlConnectionPoolGroupProviderInfo.cs
- DispatcherEventArgs.cs
- CodeParameterDeclarationExpression.cs
- PointAnimationBase.cs
- WaitHandle.cs
- Range.cs
- InvalidOleVariantTypeException.cs
- ButtonFlatAdapter.cs
- PingReply.cs
- PermissionAttributes.cs
- InheritanceUI.cs
- CodeAttributeArgumentCollection.cs
- MergeFailedEvent.cs
- StickyNoteContentControl.cs
- CorePropertiesFilter.cs
- TranslateTransform3D.cs