ToolStripDropDown.ProcessMnemonic(Char) Methode

Definitie

Verwerkt een nemonic karakter.

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

Parameters

charCode
Char

Het teken dat moet worden verwerkt.

Retouren

true indien het teken door het besturingselement als een nemonic is verwerkt; anders, false.

Voorbeelden

In het volgende codevoorbeeld ziet u een uitbreiding van de knopklasse die de ProcessMnemonic methode overschrijft om aangepast gedrag te vertonen. In het voorbeeld ziet u ook het gebruik van de CanSelect en IsMnemonic eigenschappen. Als u dit voorbeeld wilt uitvoeren, plakt u de volgende code na een formulierklasse in hetzelfde bestand. Voeg een knop van het type MnemonicButton toe aan het formulier.

// 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

Opmerkingen

Deze methode wordt aangeroepen om een controle de mogelijkheid te geven om een nemonic teken te verwerken. De methode moet bepalen of het besturingselement een status heeft om nemonics te verwerken en of het opgegeven teken een nemonic vertegenwoordigt. Als dat het geval is, moet de methode de actie uitvoeren die is gekoppeld aan de nemonic en retourneert true. Als dat niet het geval is, moet de methode worden geretourneerd false. Implementaties van deze methode gebruiken vaak de IsMnemonic methode om te bepalen of het opgegeven teken overeenkomt met een nemonic in de tekst van het besturingselement.

Voorbeeld:

if (CanSelect && IsMnemonic(charCode, MyControl.Text) {
      // Perform action associated with mnemonic.
       }

Deze standaard implementatie van de ProcessMnemonic methode retourneert false gewoon om aan te geven dat het besturingselement geen nemonic heeft.

Van toepassing op

Zie ook