Occurs when the CommandManager detects conditions that might change the ability of a command to execute.

Namespace:  C1.Phone
Assembly:  C1.Phone (in C1.Phone.dll)

Syntax

C#
public static event EventHandler RequerySuggested
Visual Basic
Public Shared Event RequerySuggested As EventHandler

Remarks

Contrary to WPF System.Windows.Input.CommandManger implementation, CommandManager doesn't track layout changes. So, this event might not be called at some conditions. If you came across this issue, use InvalidateRequerySuggested()()()() method for explicit check.

See Also