ToolStripDropDown.ProcessMnemonic(Char) Méthode
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.
Traite un caractère mnémonique.
protected public:
override bool ProcessMnemonic(char charCode);
protected internal override bool ProcessMnemonic (char charCode);
override this.ProcessMnemonic : char -> bool
Protected Friend Overrides Function ProcessMnemonic (charCode As Char) As Boolean
Paramètres
- charCode
- Char
Caractère à traiter.
Retours
true
si le caractère a été traité comme un mnémonique par le contrôle ; sinon, false
.
Exemples
L’exemple de code suivant illustre une extension de la classe button qui remplace la méthode pour présenter un ProcessMnemonic comportement personnalisé. L’exemple illustre également l’utilisation des propriétés et IsMnemonic des CanSelect propriétés. Pour exécuter cet exemple, collez le code suivant après une classe de formulaire, dans le même fichier. Ajoutez un bouton de type MnemonicButton
au formulaire.
// This button is a simple extension of the button class that overrides
// the ProcessMnemonic method. If the mnemonic is correctly entered,
// the message box will appear and the click event will be raised.
// This method makes sure the control is selectable and the
// mnemonic is correct before displaying the message box
// and triggering the click event.
public ref class MyMnemonicButton: public Button
{
protected:
bool ProcessMnemonic( char inputChar )
{
if ( CanSelect && IsMnemonic( inputChar, this->Text ) )
{
MessageBox::Show( "You've raised the click event "
"using the mnemonic." );
this->PerformClick();
return true;
}
return false;
}
};
// This button is a simple extension of the button class that overrides
// the ProcessMnemonic method. If the mnemonic is correctly entered,
// the message box will appear and the click event will be raised.
public class MyMnemonicButton : Button
{
// This method makes sure the control is selectable and the
// mneumonic is correct before displaying the message box
// and triggering the click event.
protected override bool ProcessMnemonic(char inputChar)
{
if (CanSelect && IsMnemonic(inputChar, this.Text))
{
MessageBox.Show("You've raised the click event " +
"using the mnemonic.");
this.PerformClick();
return true;
}
return false;
}
}
' This button is a simple extension of the button class that overrides
' the ProcessMnemonic method. If the mnemonic is correctly entered,
' the message box will appear and the click event will be raised.
Public Class MyMnemonicButton
Inherits Button
' This method makes sure the control is selectable and the
' mneumonic is correct before displaying the message box
' and triggering the click event.
<System.Security.Permissions.UIPermission( _
System.Security.Permissions.SecurityAction.Demand, Window:=UIPermissionWindow.AllWindows)> _
Protected Overrides Function ProcessMnemonic( _
ByVal inputChar As Char) As Boolean
If (CanSelect And IsMnemonic(inputChar, Me.Text)) Then
MessageBox.Show("You've raised the click event " _
& "using the mnemonic.")
Me.PerformClick()
Return True
End If
Return False
End Function
End Class
Remarques
Cette méthode est appelée pour donner à un contrôle la possibilité de traiter un caractère mnémonique. La méthode doit déterminer si le contrôle est dans un état pour traiter les mnémoniques et si le caractère donné représente un mnémonique. Si c’est le cas, la méthode doit effectuer l’action associée au mnémonique et retourner true
. Si ce n’est pas le cas, la méthode doit retourner false
. Les implémentations de cette méthode utilisent souvent la IsMnemonic méthode pour déterminer si le caractère donné correspond à un mnémonique dans le texte du contrôle.
Exemple :
if (CanSelect && IsMnemonic(charCode, MyControl.Text) {
// Perform action associated with mnemonic.
}
Cette implémentation par défaut de la ProcessMnemonic méthode retourne false
simplement pour indiquer que le contrôle n’a pas de mnémonique.