CheckedListBox.OnKeyPress(KeyPressEventArgs) 方法

定义

引发 KeyPress 事件。

protected:
 override void OnKeyPress(System::Windows::Forms::KeyPressEventArgs ^ e);
protected override void OnKeyPress (System.Windows.Forms.KeyPressEventArgs e);
override this.OnKeyPress : System.Windows.Forms.KeyPressEventArgs -> unit
Protected Overrides Sub OnKeyPress (e As KeyPressEventArgs)

参数

注解

如果按下了空格键,SelectionMode但属性未设置为 SelectionMode.None,则 OnKeyPress 方法将切换当前所选项的检查状态。

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件

OnKeyPress 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnKeyPress(KeyPressEventArgs) 时,请务必调用基类的 OnKeyPress(KeyPressEventArgs) 方法,以便注册的委托接收事件。

适用于