ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / CommandManager Class / RequerySuggested Event

In This Topic
    RequerySuggested Event
    In This Topic
    Occurs when the CommandManager detects conditions that might change the ability of a command to execute.
    Syntax
    'Declaration
     
    Public Event RequerySuggested As System.EventHandler
    public event System.EventHandler RequerySuggested
    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