﻿<?xml version="1.0" encoding="utf-8"?><Type Name="MouseEventArgs" FullName="System.Windows.Forms.MouseEventArgs"><TypeSignature Language="C#" Value="public class MouseEventArgs : EventArgs" /><AssemblyInfo><AssemblyName>System.Windows.Forms</AssemblyName><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Base><BaseTypeName>System.EventArgs</BaseTypeName></Base><Interfaces /><Attributes><Attribute><AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName></Attribute></Attributes><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.MouseDown" /> event occurs when the user presses the mouse button while the pointer is over a control. The <see cref="E:System.Windows.Forms.Control.MouseUp" /> event occurs when the user releases the mouse button while the pointer remains over the control. The <see cref="E:System.Windows.Forms.Control.MouseMove" /> event occurs when the user moves the mouse pointer over a control. A <see cref="T:System.Windows.Forms.MouseEventArgs" /> specifies which mouse button is pressed, how many times the mouse button was pressed and released, the coordinates of the mouse, and the amount the mouse wheel moved.</para><para>It is possible to receive a <see cref="E:System.Windows.Forms.Control.MouseDown" /> event without a corresponding <see cref="E:System.Windows.Forms.Control.MouseUp" />, if the user switches focus to another application before releasing the mouse button.</para><para>These three events exist for the <see cref="T:System.Windows.Forms.Control" />, <see cref="T:System.Windows.Forms.AxHost" />, and <see cref="T:System.Windows.Forms.NotifyIcon" /> classes.</para><para>For information about the event model, see <format type="text/html"><a href="D98FD58B-FA4F-4598-8378-ADDF4355A115">[&lt;topic://cpconEventsDelegates&gt;]</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Provides data for the <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, and <see cref="E:System.Windows.Forms.Control.MouseMove" /> events.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public MouseEventArgs (System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="button" Type="System.Windows.Forms.MouseButtons" /><Parameter Name="clicks" Type="System.Int32" /><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="delta" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.MouseEventArgs" /> class.</para></summary><param name="button"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param><param name="clicks"><attribution license="cc4" from="Microsoft" modified="false" />The number of times a mouse button was pressed. </param><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param><param name="delta"><attribution license="cc4" from="Microsoft" modified="false" />A signed count of the number of detents the wheel has rotated. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Button"><MemberSignature Language="C#" Value="public System.Windows.Forms.MouseButtons Button { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.MouseButtons</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets which mouse button was pressed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Clicks"><MemberSignature Language="C#" Value="public int Clicks { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Although the Windows interface defines standard mouse events as either single-clicks or double-clicks, individual applications can interpret a larger number of clicks as a single event.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the number of times the mouse button was pressed and released.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Delta"><MemberSignature Language="C#" Value="public int Delta { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The mouse wheel combines the features of a wheel and a mouse button. The wheel has discrete, evenly spaced notches. When you rotate the wheel, a wheel message is sent as each notch is encountered. One wheel notch, a detent, is defined by the windows constant WHEEL_DELTA, which is 120. A positive value indicates that the wheel was rotated forward (away from the user); a negative value indicates that the wheel was rotated backward (toward the user).</para><para>Currently, a value of 120 is the standard for one detent. If higher resolution mice are introduced, the definition of WHEEL_DELTA might become smaller. Most applications should check for a positive or negative value rather than an aggregate total.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Location"><MemberSignature Language="C#" Value="public System.Drawing.Point Location { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the location of the mouse during the generating mouse event.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="X"><MemberSignature Language="C#" Value="public int X { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The mouse coordinates vary based on the event being raised. For example, when the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event is handled, the mouse coordinate values are relative to the coordinates of the control that raised the event. Some events related to drag-and-drop operations have associated mouse-coordinate values that are relative to the form origin or the screen origin.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the x-coordinate of the mouse during the generating mouse event.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Y"><MemberSignature Language="C#" Value="public int Y { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The mouse coordinates vary based on the event being raised. For example, when the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event is handled, the mouse coordinate values are relative to the coordinates of the control that raised the event. Some events related to drag-and-drop operations have associated mouse coordinate values that are relative to the form origin or the screen origin.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the y-coordinate of the mouse during the generating mouse event.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>