KeyEventArgs.SuppressKeyPress Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur indiquant si l'événement de touche doit être transmis au contrôle sous-jacent.
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
Valeur de propriété
true
si l'événement de touche ne doit pas être transmis au contrôle ; sinon, false
.
Exemples
L’exemple de code suivant empêche les frappes numériques d’atteindre le TextBox contrôle nommé textBox1
.
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
Remarques
Vous pouvez affecter true
à cette propriété dans un gestionnaire d’événements, par exemple, afin d’empêcher KeyDown l’entrée utilisateur.
La définition SuppressKeyPress de sur true
définit Handled également sur true
.