KeyEventArgs.SuppressKeyPress 属性

定义

获取或设置一个值,该值指示键事件是否应传递到基础控件。

public:
 property bool SuppressKeyPress { bool get(); void set(bool value); };
public bool SuppressKeyPress { get; set; }
member this.SuppressKeyPress : bool with get, set
Public Property SuppressKeyPress As Boolean

属性值

如果键事件不应该发送到该控件,则为 true;否则为 false

示例

下面的代码示例阻止数字击键到达名为 的TextBoxtextBox1控件。

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode >= Keys.D0 && e.KeyCode <= Keys.D9 && e.Modifiers != Keys.Shift)
    {
        e.SuppressKeyPress = true;
    }
}
Private Sub TextBox1_KeyDown(ByVal sender As System.Object, _
    ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
    
    If e.KeyCode >= Keys.D0 And e.KeyCode <= Keys.D9 And _
    e.Modifiers <> Keys.Shift Then
        e.SuppressKeyPress = True
    End If
End Sub

注解

可以在事件处理程序(例如KeyDown)中将true分配给此属性,以防止用户输入。

将 设置为 SuppressKeyPress 也设置为 Handledtruetrue

适用于

另请参阅