CommandManager.AddPreviewCanExecuteHandler Método

Definição

Anexa o CanExecuteRoutedEventHandler especificado ao elemento especificado.

public static void AddPreviewCanExecuteHandler (System.Windows.UIElement element, System.Windows.Input.CanExecuteRoutedEventHandler handler);

Parâmetros

element
UIElement

O elemento ao qual anexar handler.

handler
CanExecuteRoutedEventHandler

O manipulador can execute.

Exceções

element ou handler é null.

Exemplos

O exemplo a seguir cria um CanExecuteRoutedEventHandler e um ExecutedRoutedEventHandler e os anexa a um Button que é uma fonte de comando para o Help comando.

Primeiro, o Button é criado e associado ao Help comando .

<Button Command="ApplicationCommands.Help"
        Name="helpButton">Help</Button>

Em seguida, o CanExecuteRoutedEventHandler e o ExecutedRoutedEventHandler são criados.

private void HelpCmdExecuted(object sender, ExecutedRoutedEventArgs e)
{
    // OpenHelpFile opens the help file
    OpenHelpFile();
}
private void HelpCmdCanExecute(object sender, CanExecuteRoutedEventArgs e)
{
    // HelpFilesExists() determines if the help file exists
    if (HelpFileExists() == true)
    {
        e.CanExecute = true;
    }
    else
    {
        e.CanExecute = false;
    }
}

Por fim, os manipuladores são anexados ao Button usando o AddCanExecuteHandler e AddExecutedHandlero .

CommandManager.AddExecutedHandler(helpButton, HelpCmdExecuted);
CommandManager.AddCanExecuteHandler(helpButton, HelpCmdCanExecute);

Aplica-se a

Produto Versões
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Confira também