Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / MouseEvent.cs / 1 / MouseEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class MouseEventArgs : EventArgs { ////// Provides data for the ///, /// , and /// events. /// /// /// Which button generated this event [if applicable] /// private readonly MouseButtons button; ////// /// If the user has clicked the mouse more than once, this contains the /// count of clicks so far. /// private readonly int clicks; ////// /// The x portion of the coordinate where this event occurred. /// private readonly int x; ////// /// The y portion of the coordinate where this event occurred. /// private readonly int y; private readonly int delta; ////// /// public MouseEventArgs(MouseButtons button, int clicks, int x, int y, int delta) { Debug.Assert((button & (MouseButtons.Left | MouseButtons.None | MouseButtons.Right | MouseButtons.Middle | MouseButtons.XButton1 | MouseButtons.XButton2)) == button, "Invalid information passed into MouseEventArgs constructor!"); this.button = button; this.clicks = clicks; this.x = x; this.y = y; this.delta = delta; } ////// Initializes a new instance of the ///class. /// /// /// public MouseButtons Button { get { return button; } } ////// Gets which mouse button was pressed. /// ////// /// public int Clicks { get { return clicks; } } ////// Gets the /// number of times the mouse /// button was pressed and released. /// ////// /// public int X { get { return x; } } ////// Gets the x-coordinate /// of a mouse click. /// ////// /// public int Y { get { return y; } } ////// Gets the y-coordinate of a mouse click. /// ////// /// public int Delta { get { return delta; } } ////// Gets /// a signed count of the number of detents the mouse wheel has rotated. /// ////// /// public Point Location { get { return new Point(x,y); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Gets the location of the mouse during MouseEvent. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HMACSHA512.cs
- RuleInfoComparer.cs
- Transform.cs
- UriTemplateMatch.cs
- DomNameTable.cs
- Mapping.cs
- Executor.cs
- DesignTimeTemplateParser.cs
- DocumentSchemaValidator.cs
- HtmlTableCell.cs
- ParameterToken.cs
- RuntimeResourceSet.cs
- SchemaElement.cs
- PropertyNames.cs
- Guid.cs
- DataGridViewBindingCompleteEventArgs.cs
- WindowsListViewGroup.cs
- Scripts.cs
- HttpRequest.cs
- EdmSchemaError.cs
- EmissiveMaterial.cs
- ExpandButtonVisibilityConverter.cs
- WinFormsComponentEditor.cs
- EventEntry.cs
- Switch.cs
- CodeConditionStatement.cs
- KnowledgeBase.cs
- GC.cs
- SqlDelegatedTransaction.cs
- PropertyFilterAttribute.cs
- HotSpot.cs
- ControlPaint.cs
- ReadWriteSpinLock.cs
- AncestorChangedEventArgs.cs
- ConsoleKeyInfo.cs
- EventBuilder.cs
- Rotation3DAnimation.cs
- RequestContext.cs
- TextLineResult.cs
- RecognizedAudio.cs
- WebEvents.cs
- InputGestureCollection.cs
- TextBox.cs
- AddInBase.cs
- AQNBuilder.cs
- CalendarModeChangedEventArgs.cs
- CompilerScopeManager.cs
- smtpconnection.cs
- DiscoveryDocumentSerializer.cs
- XPathDocumentIterator.cs
- SystemIPv6InterfaceProperties.cs
- CodeEntryPointMethod.cs
- GeometryModel3D.cs
- ComplexTypeEmitter.cs
- ApplicationSecurityInfo.cs
- QuaternionAnimation.cs
- FieldToken.cs
- UrlAuthFailedErrorFormatter.cs
- HelpProvider.cs
- TransactionFilter.cs
- AdjustableArrowCap.cs
- LocalClientSecuritySettings.cs
- TrackingServices.cs
- UserPersonalizationStateInfo.cs
- X509CertificateCollection.cs
- CompilerScope.cs
- MimeTypeAttribute.cs
- GridViewSelectEventArgs.cs
- ClassValidator.cs
- WebPartDisplayModeCollection.cs
- MemoryRecordBuffer.cs
- ToolStripControlHost.cs
- SQLDateTimeStorage.cs
- CollectionConverter.cs
- GlyphRunDrawing.cs
- StartUpEventArgs.cs
- SqlOuterApplyReducer.cs
- ShapeTypeface.cs
- ClusterSafeNativeMethods.cs
- DictionaryEditChange.cs
- ProgressChangedEventArgs.cs
- LoadWorkflowByInstanceKeyCommand.cs
- BatchServiceHost.cs
- HttpApplicationFactory.cs
- FileRegion.cs
- _StreamFramer.cs
- XmlTextWriter.cs
- StaticFileHandler.cs
- StylusEventArgs.cs
- SecurityTokenParameters.cs
- ConsumerConnectionPoint.cs
- TypographyProperties.cs
- XPathSelfQuery.cs
- XmlWrappingReader.cs
- OnOperation.cs
- HtmlEncodedRawTextWriter.cs
- XmlTextReaderImplHelpers.cs
- UnsafeNativeMethods.cs
- EntityDataSourceEntitySetNameItem.cs
- ByteStack.cs