Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Input / Stylus / StylusButtonEventArgs.cs / 1 / StylusButtonEventArgs.cs
using System; using System.Collections; using System.ComponentModel; using System.Windows.Media; namespace System.Windows.Input { ///////////////////////////////////////////////////////////////////////// //////Event argument used to subscribe to StylusButtonDown/Up events. ///The only information required to be passed by this argument is which button had the state change. /// public class StylusButtonEventArgs : StylusEventArgs { ///////////////////////////////////////////////////////////////////// ////// Initializes a new instance of the StylusButtonEventArgs class. /// /// /// The logical Stylus device associated with this event. /// /// /// The time when the input occured. /// /// /// The button. /// public StylusButtonEventArgs( StylusDevice stylusDevice, int timestamp, StylusButton button) : base(stylusDevice, timestamp) { // _button = button; } ////// Get the StylusButton /// public StylusButton StylusButton { get { return _button; } } ///////////////////////////////////////////////////////////////////// ////// 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) { StylusButtonEventHandler handler = (StylusButtonEventHandler)genericHandler; handler(genericTarget, this); } ///////////////////////////////////////////////////////////////////// /// StylusButton _button; } } // 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
- VectorValueSerializer.cs
- CLSCompliantAttribute.cs
- ColumnHeaderConverter.cs
- FontFamilyConverter.cs
- SingleStorage.cs
- SQLDouble.cs
- EnvelopedPkcs7.cs
- JapaneseCalendar.cs
- KeyedHashAlgorithm.cs
- ParsedAttributeCollection.cs
- SqlErrorCollection.cs
- HtmlElementCollection.cs
- PropertyMapper.cs
- FontFamilyValueSerializer.cs
- MessageBox.cs
- SoapSchemaExporter.cs
- BindableTemplateBuilder.cs
- ProcessModelInfo.cs
- SqlCommandBuilder.cs
- TransactionChannelFaultConverter.cs
- ProcessInfo.cs
- WaitHandle.cs
- Evidence.cs
- TripleDES.cs
- DynamicVirtualDiscoSearcher.cs
- xml.cs
- AstNode.cs
- PenLineCapValidation.cs
- HandlerBase.cs
- DecoderFallback.cs
- SQLByteStorage.cs
- DetailsViewDeletedEventArgs.cs
- ServiceNameCollection.cs
- SortedList.cs
- FlowLayout.cs
- TreeViewItemAutomationPeer.cs
- ContractDescription.cs
- DataBinder.cs
- SessionParameter.cs
- SystemFonts.cs
- MonitorWrapper.cs
- TextBounds.cs
- BinaryReader.cs
- FramingChannels.cs
- _LocalDataStore.cs
- ResourceDictionaryCollection.cs
- PrintDocument.cs
- EmptyReadOnlyDictionaryInternal.cs
- ColumnResizeUndoUnit.cs
- WebPageTraceListener.cs
- FrameworkTextComposition.cs
- QueryContinueDragEvent.cs
- MonthChangedEventArgs.cs
- SatelliteContractVersionAttribute.cs
- ListBoxItem.cs
- LogLogRecordHeader.cs
- ObjectListCommandCollection.cs
- BitmapEffectInput.cs
- XPathItem.cs
- SqlFunctionAttribute.cs
- RSAOAEPKeyExchangeFormatter.cs
- StringOutput.cs
- DbModificationClause.cs
- PersonalizableAttribute.cs
- UpdatableWrapper.cs
- ProviderUtil.cs
- DataTableReaderListener.cs
- ScriptingProfileServiceSection.cs
- ProgressPage.cs
- SqlDataSourceQueryEditor.cs
- DataControlImageButton.cs
- ObjectSet.cs
- WsdlBuildProvider.cs
- TextSearch.cs
- DiscreteKeyFrames.cs
- CommandBindingCollection.cs
- CookieHandler.cs
- WindowsListViewItemCheckBox.cs
- HttpValueCollection.cs
- VirtualizedCellInfoCollection.cs
- SystemIPInterfaceProperties.cs
- PublisherMembershipCondition.cs
- TemplateKey.cs
- StoreItemCollection.cs
- ExpressionList.cs
- DocumentOrderComparer.cs
- WebPartDeleteVerb.cs
- CreateUserWizardStep.cs
- DesignerTransaction.cs
- BulletChrome.cs
- ScrollProviderWrapper.cs
- X509ChainPolicy.cs
- ClientSettingsProvider.cs
- PenLineJoinValidation.cs
- FixedElement.cs
- JsonXmlDataContract.cs
- IdentityHolder.cs
- DecoratedNameAttribute.cs
- Base64Decoder.cs
- Polygon.cs