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 / StylusPointProperties.cs / 1 / StylusPointProperties.cs
//------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Input; using System.Windows.Media; using System.Collections.Generic; using SR = MS.Internal.PresentationCore.SR; using SRID = MS.Internal.PresentationCore.SRID; namespace System.Windows.Input { ////// StylusPointProperties /// public static class StylusPointProperties { ////// X /// public static readonly StylusPointProperty X = new StylusPointProperty( StylusPointPropertyIds.X, false); ////// Y /// public static readonly StylusPointProperty Y = new StylusPointProperty( StylusPointPropertyIds.Y, false); ////// Z /// public static readonly StylusPointProperty Z = new StylusPointProperty( StylusPointPropertyIds.Z, false); ////// Width /// public static readonly StylusPointProperty Width = new StylusPointProperty(StylusPointPropertyIds.Width, false); ////// Height /// public static readonly StylusPointProperty Height = new StylusPointProperty(StylusPointPropertyIds.Height, false); ////// SystemContact /// public static readonly StylusPointProperty SystemTouch = new StylusPointProperty(StylusPointPropertyIds.SystemTouch, false); ////// PacketStatus /// public static readonly StylusPointProperty PacketStatus = new StylusPointProperty( StylusPointPropertyIds.PacketStatus, false); ////// SerialNumber /// public static readonly StylusPointProperty SerialNumber = new StylusPointProperty(StylusPointPropertyIds.SerialNumber, false); ////// NormalPressure /// public static readonly StylusPointProperty NormalPressure = new StylusPointProperty( StylusPointPropertyIds.NormalPressure, false); ////// TangentPressure /// public static readonly StylusPointProperty TangentPressure = new StylusPointProperty( StylusPointPropertyIds.TangentPressure, false); ////// ButtonPressure /// public static readonly StylusPointProperty ButtonPressure = new StylusPointProperty( StylusPointPropertyIds.ButtonPressure, false); ////// XTiltOrientation /// public static readonly StylusPointProperty XTiltOrientation = new StylusPointProperty( StylusPointPropertyIds.XTiltOrientation, false); ////// YTiltOrientation /// public static readonly StylusPointProperty YTiltOrientation = new StylusPointProperty( StylusPointPropertyIds.YTiltOrientation, false); ////// AzimuthOrientation /// public static readonly StylusPointProperty AzimuthOrientation = new StylusPointProperty( StylusPointPropertyIds.AzimuthOrientation, false); ////// AltitudeOrientation /// public static readonly StylusPointProperty AltitudeOrientation = new StylusPointProperty( StylusPointPropertyIds.AltitudeOrientation, false); ////// TwistOrientation /// public static readonly StylusPointProperty TwistOrientation = new StylusPointProperty( StylusPointPropertyIds.TwistOrientation, false); ////// PitchRotation /// public static readonly StylusPointProperty PitchRotation = new StylusPointProperty( StylusPointPropertyIds.PitchRotation, false); ////// RollRotation /// public static readonly StylusPointProperty RollRotation = new StylusPointProperty(StylusPointPropertyIds.RollRotation, false); ////// YawRotation /// public static readonly StylusPointProperty YawRotation = new StylusPointProperty(StylusPointPropertyIds.YawRotation, false); ////// TipButton /// public static readonly StylusPointProperty TipButton = new StylusPointProperty(StylusPointPropertyIds.TipButton, true); ////// BarrelButton /// public static readonly StylusPointProperty BarrelButton = new StylusPointProperty(StylusPointPropertyIds.BarrelButton, true); ////// SecondaryTipButton /// public static readonly StylusPointProperty SecondaryTipButton = new StylusPointProperty(StylusPointPropertyIds.SecondaryTipButton, true); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Input; using System.Windows.Media; using System.Collections.Generic; using SR = MS.Internal.PresentationCore.SR; using SRID = MS.Internal.PresentationCore.SRID; namespace System.Windows.Input { ////// StylusPointProperties /// public static class StylusPointProperties { ////// X /// public static readonly StylusPointProperty X = new StylusPointProperty( StylusPointPropertyIds.X, false); ////// Y /// public static readonly StylusPointProperty Y = new StylusPointProperty( StylusPointPropertyIds.Y, false); ////// Z /// public static readonly StylusPointProperty Z = new StylusPointProperty( StylusPointPropertyIds.Z, false); ////// Width /// public static readonly StylusPointProperty Width = new StylusPointProperty(StylusPointPropertyIds.Width, false); ////// Height /// public static readonly StylusPointProperty Height = new StylusPointProperty(StylusPointPropertyIds.Height, false); ////// SystemContact /// public static readonly StylusPointProperty SystemTouch = new StylusPointProperty(StylusPointPropertyIds.SystemTouch, false); ////// PacketStatus /// public static readonly StylusPointProperty PacketStatus = new StylusPointProperty( StylusPointPropertyIds.PacketStatus, false); ////// SerialNumber /// public static readonly StylusPointProperty SerialNumber = new StylusPointProperty(StylusPointPropertyIds.SerialNumber, false); ////// NormalPressure /// public static readonly StylusPointProperty NormalPressure = new StylusPointProperty( StylusPointPropertyIds.NormalPressure, false); ////// TangentPressure /// public static readonly StylusPointProperty TangentPressure = new StylusPointProperty( StylusPointPropertyIds.TangentPressure, false); ////// ButtonPressure /// public static readonly StylusPointProperty ButtonPressure = new StylusPointProperty( StylusPointPropertyIds.ButtonPressure, false); ////// XTiltOrientation /// public static readonly StylusPointProperty XTiltOrientation = new StylusPointProperty( StylusPointPropertyIds.XTiltOrientation, false); ////// YTiltOrientation /// public static readonly StylusPointProperty YTiltOrientation = new StylusPointProperty( StylusPointPropertyIds.YTiltOrientation, false); ////// AzimuthOrientation /// public static readonly StylusPointProperty AzimuthOrientation = new StylusPointProperty( StylusPointPropertyIds.AzimuthOrientation, false); ////// AltitudeOrientation /// public static readonly StylusPointProperty AltitudeOrientation = new StylusPointProperty( StylusPointPropertyIds.AltitudeOrientation, false); ////// TwistOrientation /// public static readonly StylusPointProperty TwistOrientation = new StylusPointProperty( StylusPointPropertyIds.TwistOrientation, false); ////// PitchRotation /// public static readonly StylusPointProperty PitchRotation = new StylusPointProperty( StylusPointPropertyIds.PitchRotation, false); ////// RollRotation /// public static readonly StylusPointProperty RollRotation = new StylusPointProperty(StylusPointPropertyIds.RollRotation, false); ////// YawRotation /// public static readonly StylusPointProperty YawRotation = new StylusPointProperty(StylusPointPropertyIds.YawRotation, false); ////// TipButton /// public static readonly StylusPointProperty TipButton = new StylusPointProperty(StylusPointPropertyIds.TipButton, true); ////// BarrelButton /// public static readonly StylusPointProperty BarrelButton = new StylusPointProperty(StylusPointPropertyIds.BarrelButton, true); ////// SecondaryTipButton /// public static readonly StylusPointProperty SecondaryTipButton = new StylusPointProperty(StylusPointPropertyIds.SecondaryTipButton, true); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComplexTypeEmitter.cs
- RegisteredExpandoAttribute.cs
- InvokeMethodDesigner.xaml.cs
- EtwTrace.cs
- XmlBinaryWriterSession.cs
- UmAlQuraCalendar.cs
- BindingValueChangedEventArgs.cs
- ModuleElement.cs
- PngBitmapEncoder.cs
- ProcessModelInfo.cs
- ConfigPathUtility.cs
- Wizard.cs
- BufferModeSettings.cs
- RNGCryptoServiceProvider.cs
- PreviewPrintController.cs
- SiteMap.cs
- UnhandledExceptionEventArgs.cs
- SchemaNames.cs
- Attribute.cs
- XmlTextReader.cs
- RowVisual.cs
- IntSumAggregationOperator.cs
- IndicShape.cs
- DataControlCommands.cs
- TableLayoutCellPaintEventArgs.cs
- OutputChannelBinder.cs
- UInt32Storage.cs
- SqlBuffer.cs
- PasswordTextContainer.cs
- WebPartEventArgs.cs
- ConsoleEntryPoint.cs
- ProxySimple.cs
- HtmlButton.cs
- FileUtil.cs
- TextDecoration.cs
- ObjectStateFormatter.cs
- SourceFileInfo.cs
- ProcessModelSection.cs
- Debug.cs
- Brush.cs
- Base64Stream.cs
- SQLInt16Storage.cs
- LingerOption.cs
- EntityException.cs
- TableCellCollection.cs
- listitem.cs
- PeerNodeTraceRecord.cs
- HttpListenerException.cs
- DoubleConverter.cs
- Message.cs
- ParseElementCollection.cs
- SelectionItemProviderWrapper.cs
- AnnotationResourceCollection.cs
- VScrollProperties.cs
- TraceHandler.cs
- ToolStripRenderer.cs
- XmlSchemaSearchPattern.cs
- FilteredReadOnlyMetadataCollection.cs
- XsdCachingReader.cs
- XmlElementElementCollection.cs
- ResourceBinder.cs
- SqlTypesSchemaImporter.cs
- ServiceRoute.cs
- XsltException.cs
- DataGridViewUtilities.cs
- SmtpNetworkElement.cs
- Rect3D.cs
- ResourceProperty.cs
- HttpCookieCollection.cs
- DBCommandBuilder.cs
- DataServicePagingProviderWrapper.cs
- PrintEvent.cs
- XmlNotation.cs
- DesignOnlyAttribute.cs
- HTMLTagNameToTypeMapper.cs
- CodeDirectionExpression.cs
- MiniLockedBorderGlyph.cs
- MustUnderstandBehavior.cs
- XMLDiffLoader.cs
- HttpModulesSection.cs
- Atom10FeedFormatter.cs
- ElementAction.cs
- TextWriterTraceListener.cs
- FixedPageStructure.cs
- PrintController.cs
- MenuTracker.cs
- TargetConverter.cs
- CommandDevice.cs
- DoubleIndependentAnimationStorage.cs
- base64Transforms.cs
- SpAudioStreamWrapper.cs
- EntityDataSourceView.cs
- PowerStatus.cs
- WindowsNonControl.cs
- SystemPens.cs
- MatchingStyle.cs
- GroupQuery.cs
- Debugger.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- AttachInfo.cs