TextBoxBase.Click 事件

在单击文本框时发生。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
Public Event Click As EventHandler
用法
Dim instance As TextBoxBase
Dim handler As EventHandler

AddHandler instance.Click, handler
public event EventHandler Click
public:
event EventHandler^ Click {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
/** @event */
public void add_Click (EventHandler value)

/** @event */
public void remove_Click (EventHandler value)
JScript 支持使用事件,但不支持进行新的声明。

备注

有关处理事件的更多信息,请参见 使用事件

示例

下面的代码示例演示如何处理 Click 事件。若要运行该示例,请将下面的代码粘贴到一个包含名为 TextBox1 的 TextBox 控件的窗体中。该示例要求事件处理方法已经与 Click 事件相关联。

'Selects everything in TextBox1.
Private Sub TextBox1_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles TextBox1.Click
    TextBox1.SelectAll()
End Sub
//Selects everything in TextBox1.
private void TextBox1_Click(object sender, System.EventArgs e)
{
    TextBox1.SelectAll();
}
private:
   //Selects everything in TextBox1.
   void TextBox1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      TextBox1->SelectAll();
   }
//Selects everything in TextBox1.
private void textBox1_Click(Object sender, System.EventArgs e)
{
    textBox1.SelectAll();
} //textBox1_Click

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

TextBoxBase 类
TextBoxBase 成员
System.Windows.Forms 命名空间