CommandManager.InvalidateRequerySuggested Метод

Определение

CommandManager Принудительно вызывает RequerySuggested событие.

public:
 static void InvalidateRequerySuggested();
public static void InvalidateRequerySuggested();
static member InvalidateRequerySuggested : unit -> unit
Public Shared Sub InvalidateRequerySuggested ()

Примеры

В следующем примере используется периодический DispatcherTimer вызов InvalidateRequerySuggestedCommandManager принудительного вызова RequerySuggested события.

//  System.Windows.Threading.DispatcherTimer.Tick handler
//
//  Updates the current seconds display and calls
//  InvalidateRequerySuggested on the CommandManager to force 
//  the Command to raise the CanExecuteChanged event.
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
    // Updating the Label which displays the current second
    lblSeconds.Content = DateTime.Now.Second;

    // Forcing the CommandManager to raise the RequerySuggested event
    CommandManager.InvalidateRequerySuggested();
}
'  System.Windows.Threading.DispatcherTimer.Tick handler
'
'  Updates the current seconds display and calls
'  InvalidateRequerySuggested on the CommandManager to force 
'  the Command to raise the CanExecuteChanged event.
Private Sub dispatcherTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)
    ' Updating the Label which displays the current second
    lblSeconds.Content = Date.Now.Second

    ' Forcing the CommandManager to raise the RequerySuggested event
    CommandManager.InvalidateRequerySuggested()
End Sub

Комментарии

Единственное CommandManager внимание уделяется определенным условиям при определении изменения целевого объекта команды, таких как изменение фокуса клавиатуры. В ситуациях, когда CommandManager недостаточно определяет изменение условий, которые приводят к тому, что команда не может выполняться, InvalidateRequerySuggested можно вызвать принудительное CommandManager вызов RequerySuggested события.

Применяется к