ListBoxArray.MouseClick Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the control is clicked by the mouse.
public:
event System::Windows::Forms::MouseEventHandler ^ MouseClick;
public event System.Windows.Forms.MouseEventHandler MouseClick;
member this.MouseClick : System.Windows.Forms.MouseEventHandler
Public Custom Event MouseClick As MouseEventHandler
Public Event MouseClick As MouseEventHandler
Event Type
Remarks
Clicking a mouse button when the pointer is over a shape typically raises the following series of events from the control:
MouseClick
Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an MouseDoubleClick event instead of the second MouseClick
event.
Note
Click events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
For more information about how to handle events, see Handling and Raising Events.
Note
Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.