Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / MouseButtonEventArgs.cs / 1305600 / MouseButtonEventArgs.cs
using System; namespace System.Windows.Input { ////// The MouseButtonEventArgs describes the state of a Mouse button. /// public class MouseButtonEventArgs : MouseEventArgs { ////// Initializes a new instance of the MouseButtonEventArgs class. /// /// /// The logical Mouse device associated with this event. /// /// /// The time when the input occured. /// /// /// The mouse button whose state is being described. /// public MouseButtonEventArgs(MouseDevice mouse, int timestamp, MouseButton button) : base(mouse, timestamp) { MouseButtonUtilities.Validate(button); _button = button; _count = 1; } ////// Initializes a new instance of the MouseButtonEventArgs class. /// /// /// The logical Mouse device associated with this event. /// /// /// The time when the input occured. /// /// /// The Mouse button whose state is being described. /// /// /// The stylus device that was involved with this event. /// public MouseButtonEventArgs(MouseDevice mouse, int timestamp, MouseButton button, StylusDevice stylusDevice) : base(mouse, timestamp, stylusDevice) { MouseButtonUtilities.Validate(button); _button = button; _count = 1; } ////// Read-only access to the button being described. /// public MouseButton ChangedButton { get {return _button;} } ////// Read-only access to the button state. /// public MouseButtonState ButtonState { get { MouseButtonState state = MouseButtonState.Released; switch(_button) { case MouseButton.Left: state = this.MouseDevice.LeftButton; break; case MouseButton.Right: state = this.MouseDevice.RightButton; break; case MouseButton.Middle: state = this.MouseDevice.MiddleButton; break; case MouseButton.XButton1: state = this.MouseDevice.XButton1; break; case MouseButton.XButton2: state = this.MouseDevice.XButton2; break; } return state; } } ////// Read access to the button click count. /// public int ClickCount { get {return _count;} internal set { _count = value;} } ////// 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) { MouseButtonEventHandler handler = (MouseButtonEventHandler) genericHandler; handler(genericTarget, this); } private MouseButton _button; private int _count; } } // 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 MouseButtonEventArgs describes the state of a Mouse button. /// public class MouseButtonEventArgs : MouseEventArgs { ////// Initializes a new instance of the MouseButtonEventArgs class. /// /// /// The logical Mouse device associated with this event. /// /// /// The time when the input occured. /// /// /// The mouse button whose state is being described. /// public MouseButtonEventArgs(MouseDevice mouse, int timestamp, MouseButton button) : base(mouse, timestamp) { MouseButtonUtilities.Validate(button); _button = button; _count = 1; } ////// Initializes a new instance of the MouseButtonEventArgs class. /// /// /// The logical Mouse device associated with this event. /// /// /// The time when the input occured. /// /// /// The Mouse button whose state is being described. /// /// /// The stylus device that was involved with this event. /// public MouseButtonEventArgs(MouseDevice mouse, int timestamp, MouseButton button, StylusDevice stylusDevice) : base(mouse, timestamp, stylusDevice) { MouseButtonUtilities.Validate(button); _button = button; _count = 1; } ////// Read-only access to the button being described. /// public MouseButton ChangedButton { get {return _button;} } ////// Read-only access to the button state. /// public MouseButtonState ButtonState { get { MouseButtonState state = MouseButtonState.Released; switch(_button) { case MouseButton.Left: state = this.MouseDevice.LeftButton; break; case MouseButton.Right: state = this.MouseDevice.RightButton; break; case MouseButton.Middle: state = this.MouseDevice.MiddleButton; break; case MouseButton.XButton1: state = this.MouseDevice.XButton1; break; case MouseButton.XButton2: state = this.MouseDevice.XButton2; break; } return state; } } ////// Read access to the button click count. /// public int ClickCount { get {return _count;} internal set { _count = value;} } ////// 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) { MouseButtonEventHandler handler = (MouseButtonEventHandler) genericHandler; handler(genericTarget, this); } private MouseButton _button; private int _count; } } // 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
- MetabaseServerConfig.cs
- Marshal.cs
- XmlSubtreeReader.cs
- WebPartManager.cs
- NamedPermissionSet.cs
- TreeNodeStyleCollection.cs
- CompilerCollection.cs
- UInt16Converter.cs
- CompModSwitches.cs
- ItemsChangedEventArgs.cs
- Rijndael.cs
- MatrixTransform3D.cs
- BamlRecordHelper.cs
- SingleConverter.cs
- ToolStripDropDownButton.cs
- FileController.cs
- FlagsAttribute.cs
- OrCondition.cs
- WebEvents.cs
- OdbcErrorCollection.cs
- RectangleConverter.cs
- DataColumnPropertyDescriptor.cs
- Buffer.cs
- CodeConstructor.cs
- Select.cs
- PreviewKeyDownEventArgs.cs
- SynchronizationScope.cs
- HtmlForm.cs
- TopClause.cs
- XPathAncestorIterator.cs
- InvalidCardException.cs
- XNodeNavigator.cs
- OdbcEnvironment.cs
- CategoryValueConverter.cs
- ForwardPositionQuery.cs
- Color.cs
- DependencySource.cs
- altserialization.cs
- MaskedTextBoxDesignerActionList.cs
- ConnectionOrientedTransportManager.cs
- TreeViewImageIndexConverter.cs
- DateTimeUtil.cs
- DataServiceKeyAttribute.cs
- ControlBuilderAttribute.cs
- ParameterElementCollection.cs
- MenuItemStyle.cs
- ResourcePermissionBaseEntry.cs
- MouseEventArgs.cs
- ControlAdapter.cs
- XNodeNavigator.cs
- FileSystemEventArgs.cs
- ConnectorMovedEventArgs.cs
- WorkingDirectoryEditor.cs
- WebPartUserCapability.cs
- VisualCollection.cs
- _ChunkParse.cs
- Menu.cs
- serverconfig.cs
- LoadedOrUnloadedOperation.cs
- Menu.cs
- XslException.cs
- DetailsViewDeletedEventArgs.cs
- ComponentEditorPage.cs
- Timeline.cs
- FrameworkObject.cs
- ProxyWebPartConnectionCollection.cs
- SynchronizationContext.cs
- ManagementQuery.cs
- SqlException.cs
- UnionQueryOperator.cs
- XPathException.cs
- SessionStateSection.cs
- ResourceCategoryAttribute.cs
- XmlDomTextWriter.cs
- HttpRawResponse.cs
- CodeChecksumPragma.cs
- NullableLongSumAggregationOperator.cs
- DataServiceResponse.cs
- BitmapInitialize.cs
- filewebrequest.cs
- WindowProviderWrapper.cs
- CompilerInfo.cs
- WebPartVerb.cs
- WebPartAuthorizationEventArgs.cs
- ArrangedElementCollection.cs
- HttpListenerException.cs
- UIElementHelper.cs
- XPathArrayIterator.cs
- ReadingWritingEntityEventArgs.cs
- LayoutManager.cs
- WorkflowMessageEventHandler.cs
- MemberHolder.cs
- BitmapEffectGeneralTransform.cs
- ColumnCollection.cs
- InvalidAsynchronousStateException.cs
- TabControl.cs
- RSAOAEPKeyExchangeFormatter.cs
- Pool.cs
- clipboard.cs
- HttpListenerTimeoutManager.cs