Definition
Namespace:Telerik.Windows.Media.Imaging.ImageEditorCommands
Assembly:Telerik.Windows.Controls.ImageEditor.dll
Syntax:
C#
public abstract class ImageEditorCommandBase : ICommand
Inheritance: objectImageEditorCommandBase
Derived Classes:
Implements:
Constructors
Properties
Gets a value indicating whether this command can be executed when RadImageEditor is read-only. The default implementation returns false.
C#
protected virtual bool CanExecuteInReadOnlyMode { get; }
true if this command preserves the image; otherwise, false.
Gets a value indicating whether this command can be executed when RadImageEditor doesn't have a lodaded image. The default implementation returns false.
C#
protected virtual bool CanExecuteWithoutImage { get; }
true if this command requires an image be loaded; otherwise, false.
C#
public RadImageEditor Owner { get; }
Methods
C#
protected void OnCanExecuteChanged()
Events
C#
public event EventHandler CanExecuteChanged
Implements: