TextBoxBase::Click Event

 

Occurs when the text box is clicked.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(true)]
event EventHandler^ Click {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

For more information about handling events, see NIB: Consuming Events.

The following code example demonstrates how to handle the Click event. To run the example, paste the following code in a form containing a TextBox control called TextBox1. This example requires that the event-handling method has been associated with the Click event.

private:
   //Selects everything in TextBox1.
   void TextBox1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      TextBox1->SelectAll();
   }

.NET Framework
Available since 1.1
Return to top
Show: