Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParallelEnumerable.cs
- Buffer.cs
- CompilerGeneratedAttribute.cs
- AQNBuilder.cs
- JsonReaderWriterFactory.cs
- FileNotFoundException.cs
- ObjectHandle.cs
- ComponentSerializationService.cs
- TaskCanceledException.cs
- ReferentialConstraintRoleElement.cs
- PhysicalAddress.cs
- wgx_sdk_version.cs
- BitmapMetadataEnumerator.cs
- ToolBarTray.cs
- ElementFactory.cs
- ProfileInfo.cs
- ScriptReferenceBase.cs
- HttpRuntimeSection.cs
- EntityDataSourceChangedEventArgs.cs
- ProviderIncompatibleException.cs
- DataSourceView.cs
- ModelItemDictionary.cs
- BinaryUtilClasses.cs
- Int32CollectionConverter.cs
- ApplicationInterop.cs
- BasicCellRelation.cs
- XomlSerializationHelpers.cs
- DefaultCommandExtensionCallback.cs
- AssemblyCollection.cs
- HttpListenerContext.cs
- XmlDictionaryString.cs
- ConfigXmlText.cs
- X509KeyIdentifierClauseType.cs
- GiveFeedbackEvent.cs
- LoginView.cs
- DataGridViewEditingControlShowingEventArgs.cs
- BuildProvidersCompiler.cs
- SoapInteropTypes.cs
- ObjectDataSourceDisposingEventArgs.cs
- XPathDocument.cs
- XmlSchemaAll.cs
- HttpWriter.cs
- MessagePropertyFilter.cs
- ToolStripOverflowButton.cs
- Fonts.cs
- WebConfigurationHost.cs
- HttpPostedFile.cs
- PointAnimationUsingKeyFrames.cs
- WebAdminConfigurationHelper.cs
- DataGridDetailsPresenterAutomationPeer.cs
- TextServicesCompartment.cs
- SafeTokenHandle.cs
- CompiledAction.cs
- TimerElapsedEvenArgs.cs
- EventSetter.cs
- DirectoryGroupQuery.cs
- StringStorage.cs
- Rules.cs
- InternalMappingException.cs
- PropertyGrid.cs
- AccessibilityApplicationManager.cs
- Int32KeyFrameCollection.cs
- EventLogTraceListener.cs
- InputMethod.cs
- IntellisenseTextBox.designer.cs
- DataGridViewCheckBoxColumn.cs
- ManipulationInertiaStartingEventArgs.cs
- ResourceManager.cs
- ImageField.cs
- SystemFonts.cs
- MobileSysDescriptionAttribute.cs
- DefaultPropertyAttribute.cs
- NewArray.cs
- ResourceCategoryAttribute.cs
- SettingsAttributeDictionary.cs
- FilePrompt.cs
- GridViewHeaderRowPresenter.cs
- SettingsPropertyValueCollection.cs
- CompilerErrorCollection.cs
- HttpPostServerProtocol.cs
- SqlExpressionNullability.cs
- DefaultBindingPropertyAttribute.cs
- JsonWriterDelegator.cs
- WindowsListBox.cs
- TraceLog.cs
- ManagedFilter.cs
- XPathNavigatorKeyComparer.cs
- sqlmetadatafactory.cs
- DataFormats.cs
- GroupLabel.cs
- HttpProcessUtility.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- TaiwanCalendar.cs
- DispatcherTimer.cs
- XmlReaderSettings.cs
- ClientFormsAuthenticationMembershipProvider.cs
- TextElementEnumerator.cs
- UTF7Encoding.cs
- QueryResults.cs
- QueryCursorEventArgs.cs