KeyEventArgs.SuppressKeyPress 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出按鍵事件是否應該傳遞至基礎控制項。
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
。
範例
下列程式碼範例可防止數值按鍵到達名為 textBox1
的 TextBox 控制項。
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
備註
您可以在事件處理常式中指派 true
給此屬性,例如 KeyDown 防止使用者輸入。
將 設定 SuppressKeyPress 為 true
也會設定 Handled 為 true
。