New to Telerik UI for WPFStart a free 30-day trial

RadImageEditor is powerful UI component for image editing with predefined UI.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ImageEditor.dll

Syntax:

C#
[TelerikToolboxCategory("Input")]
public class RadImageEditorUI : Control

Inheritance: objectRadImageEditorUI

Constructors

C#
public RadImageEditorUI()

Fields

C#
public const string ImageEditorName = "ImageEditor"

ImageProperty

DependencyProperty

C#
public static readonly DependencyProperty ImageProperty

ImageToolsSectionsProperty

DependencyProperty

C#
public static readonly DependencyProperty ImageToolsSectionsProperty

IsOpenButtonVisibleProperty

DependencyProperty

C#
public static readonly DependencyProperty IsOpenButtonVisibleProperty

IsReadOnlyProperty

DependencyProperty

C#
public static readonly DependencyProperty IsReadOnlyProperty

IsSaveButtonVisibleProperty

DependencyProperty

C#
public static readonly DependencyProperty IsSaveButtonVisibleProperty
C#
public static readonly DependencyProperty OpenCommandParameterProperty

OpenCommandProperty

DependencyProperty

C#
public static readonly DependencyProperty OpenCommandProperty
C#
public static readonly DependencyProperty SaveCommandParameterProperty

SaveCommandProperty

DependencyProperty

C#
public static readonly DependencyProperty SaveCommandProperty

ZoomToCursorProperty

DependencyProperty

C#
public static readonly DependencyProperty ZoomToCursorProperty

Properties

Gets or sets the current image.

C#
public RadBitmap Image { get; set; }
Property Value:

The image.

Gets the RadImageEditor used inside the RadImageEditorUI.

C#
public RadImageEditor ImageEditor { get; }
Property Value:

The image editor.

Gets or sets the image tools sections collection.

C#
public ImageToolsSectionsCollection ImageToolsSections { get; set; }
Property Value:

The image tools sections collection.

C#
public bool IsOpenButtonVisible { get; set; }

Gets or sets a value indicating whether the control is read-only.

C#
public bool IsReadOnly { get; set; }
C#
public bool IsSaveButtonVisible { get; set; }
C#
public ICommand OpenCommand { get; set; }
C#
public object OpenCommandParameter { get; set; }
C#
public ICommand SaveCommand { get; set; }
C#
public object SaveCommandParameter { get; set; }

Gets or sets the value indicating whether wheel scaling is performed towards the mouse cursor on the image.

C#
public bool ZoomToCursor { get; set; }

Methods

C#
public override void OnApplyTemplate()

Raises the event. This method is invoked whenever is set to true internally.

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs

The RoutedEventArgs that contains the event data.

C#
protected override void OnKeyDown(KeyEventArgs e)
Parameters:eKeyEventArgs

Events

C#
public event EventHandler ImageEditorLoaded