Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / MouseEvent.cs / 1305376 / 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. //------------------------------------------------------------------------------ ///// Gets the location of the mouse during MouseEvent. /// ///// 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./// Gets the location of the mouse during MouseEvent. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EdmComplexPropertyAttribute.cs
- CodeObjectCreateExpression.cs
- CalloutQueueItem.cs
- BindingSource.cs
- XamlStream.cs
- UnsafeNativeMethods.cs
- KeyFrames.cs
- PlainXmlDeserializer.cs
- WebPartEditVerb.cs
- GACIdentityPermission.cs
- _AuthenticationState.cs
- TypefaceCollection.cs
- Span.cs
- GridViewSelectEventArgs.cs
- WebPartTransformerCollection.cs
- SortedDictionary.cs
- Misc.cs
- ApplicationException.cs
- XmlExpressionDumper.cs
- IndicFontClient.cs
- MarshalByRefObject.cs
- ErrorsHelper.cs
- XmlObjectSerializerReadContext.cs
- BitmapSourceSafeMILHandle.cs
- CollectionViewGroupInternal.cs
- ArgumentException.cs
- SharedPersonalizationStateInfo.cs
- SqlWriter.cs
- HtmlAnchor.cs
- CanonicalFontFamilyReference.cs
- CharConverter.cs
- WindowManager.cs
- CheckableControlBaseAdapter.cs
- DataGridViewHitTestInfo.cs
- XmlnsPrefixAttribute.cs
- ProtocolViolationException.cs
- IWorkflowDebuggerService.cs
- BulletChrome.cs
- ArithmeticException.cs
- documentation.cs
- XslException.cs
- DesigntimeLicenseContext.cs
- FunctionParameter.cs
- SafeLocalMemHandle.cs
- GridErrorDlg.cs
- JsonGlobals.cs
- TableLayoutSettings.cs
- DataTableTypeConverter.cs
- DrawingAttributes.cs
- MimeTypeMapper.cs
- MobileControlPersister.cs
- WindowsImpersonationContext.cs
- CapabilitiesRule.cs
- DataContract.cs
- ParentUndoUnit.cs
- PlatformCulture.cs
- DatagridviewDisplayedBandsData.cs
- LogicalChannel.cs
- StreamWriter.cs
- CultureTable.cs
- UrlAuthFailedErrorFormatter.cs
- PackageRelationshipCollection.cs
- ContentValidator.cs
- WebPartManager.cs
- AutoGeneratedFieldProperties.cs
- PersianCalendar.cs
- BindingContext.cs
- DeflateStreamAsyncResult.cs
- MemberListBinding.cs
- CompositeKey.cs
- CommandBindingCollection.cs
- OAVariantLib.cs
- AttributeEmitter.cs
- Label.cs
- XamlFilter.cs
- SessionStateSection.cs
- TableCell.cs
- VisualTreeUtils.cs
- SessionIDManager.cs
- StickyNoteAnnotations.cs
- WebBrowserContainer.cs
- ContainerParaClient.cs
- TemplateLookupAction.cs
- TimelineGroup.cs
- GlyphsSerializer.cs
- EnumMember.cs
- DefinitionProperties.cs
- ReferenceEqualityComparer.cs
- CodeVariableDeclarationStatement.cs
- DeclarativeCatalogPart.cs
- TypeLibConverter.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- DoubleAnimation.cs
- WebPartConnectionsConfigureVerb.cs
- Vector3DValueSerializer.cs
- BaseTreeIterator.cs
- LinqDataSourceHelper.cs
- HttpProtocolImporter.cs
- SrgsNameValueTag.cs
- PersonalizationProvider.cs