Class CanExecuteRoutedEventArgs
Provides data for the CanExecute and PreviewCanExecute routed events.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public sealed class CanExecuteRoutedEventArgs : RadRoutedEventArgs
Properties
CanExecute
Gets or sets a value that indicates whether the RoutedCommand associated with this event can be executed on the command target.
Declaration
public bool CanExecute { get; set; }
Property Value
System.Boolean
|
Command
Gets the command associated with this event.
Declaration
public ICommand Command { get; }
Property Value
System.Windows.Input.ICommand
|
ContinueRouting
Determines whether the input routed event that invoked the command should continue to route through the element tree.
Declaration
public bool ContinueRouting { get; set; }
Property Value
System.Boolean
|
Parameter
Gets the command specific data.
Declaration
public object Parameter { get; }
Property Value
System.Object
|
Methods
InvokeEventHandler(Delegate, Object)
Invokes the event handler.
Declaration
protected override void InvokeEventHandler(Delegate genericHandler, object target)
Parameters
System.Delegate
genericHandler
The generic handler. |
System.Object
target
The target. |