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

The event arguments are used for ActivePangeChanged event.

Definition

Namespace:Telerik.Windows.Controls.Docking

Assembly:Telerik.Windows.Controls.Docking.dll

Syntax:

C#
public class ActivePangeChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsActivePangeChangedEventArgs

Constructors

Initializes a new instance of the ActivePangeChangedEventArgs class.

C#
public ActivePangeChangedEventArgs(RoutedEvent routedEvent, object source, RadPane oldPane, RadPane newPane)
Parameters:routedEventRoutedEvent

The routed event identifier for this instance of the RoutedEventArgs class.

sourceobject

An alternate source that will be reported when the event is handled. This pre-populates the Source property.

oldPaneRadPane

The old active pane.

newPaneRadPane

The new active pane that was just activated.

Properties

Gets the new active pane that was just activated.

C#
public RadPane NewPane { get; }

Gets the old active pane.

C#
public RadPane OldPane { get; }