NumericUpDown.OnTextBoxKeyPress(Object, KeyPressEventArgs) 方法

定义

引发 KeyPress 事件。

protected:
 override void OnTextBoxKeyPress(System::Object ^ source, System::Windows::Forms::KeyPressEventArgs ^ e);
protected override void OnTextBoxKeyPress (object source, System.Windows.Forms.KeyPressEventArgs e);
protected override void OnTextBoxKeyPress (object? source, System.Windows.Forms.KeyPressEventArgs e);
override this.OnTextBoxKeyPress : obj * System.Windows.Forms.KeyPressEventArgs -> unit
Protected Overrides Sub OnTextBoxKeyPress (source As Object, e As KeyPressEventArgs)

参数

source
Object

事件源。

e
KeyPressEventArgs

包含事件数据的 KeyPressEventArgs

注解

控件 NumericUpDown 仅接受数字、负号、小数点和编辑击键,如 BACKSPACE。 如果 属性 Hexadecimal 设置为 true,则 NumericUpDown 接受十六进制数字。

适用于