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

Represents a base class for the SettingsPane and SettingsPaneView.

Definition

Namespace:Telerik.Windows.Controls.Diagrams.Extensions

Assembly:Telerik.Windows.Controls.Diagrams.Extensions.dll

Syntax:

C#
public abstract class SettingsPaneBase : Control

Inheritance: objectSettingsPaneBase

Derived Classes: SettingsPaneSettingsPaneView

Constructors

C#
protected SettingsPaneBase()

Fields

DiagramProperty

DependencyProperty

Identifies the Diagram dependency property.

C#
public static readonly DependencyProperty DiagramProperty

IsActiveProperty

DependencyProperty

Identifies the IsActive dependency property.

C#
public static readonly DependencyProperty IsActiveProperty

Properties

Gets or sets the diagram control.

C#
public RadDiagram Diagram { get; set; }

Gets or sets a value indicating whether this instance is active.

C#
public bool IsActive { get; set; }

Methods

Called when diagram addition control is activated.

C#
protected virtual void OnDiagramAdditionalContentActivated(object sender, AdditionalContentActivatedEventArgs e)
Parameters:senderobjecteAdditionalContentActivatedEventArgs

Called when diagram control property is changed.

C#
protected virtual void OnDiagramPropertyChanged(RadDiagram oldValue, RadDiagram newValue)
Parameters:oldValueRadDiagram

The old value.

newValueRadDiagram

The new value.

Called when diagram selection bounds is changed.

C#
protected virtual void OnDiagramSelectionBoundsChanged(object sender, EventArgs e)
Parameters:senderobject

The sender.

eEventArgs

The EventArgs instance containing the event data.

Called when diagram control selection is changed.

C#
protected virtual void OnDiagramSelectionChanged(object sender, SelectionChangedEventArgs e)
Parameters:senderobject

The sender.

eSelectionChangedEventArgs

The SelectionChangedEventArgs instance containing the event data.

Called when is active property is changed.

C#
protected virtual void OnIsActivePropertyChanged(bool oldValue, bool newValue)
Parameters:oldValuebool

The old value.

newValuebool

The new value.