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

The event args are PreviewShowCompass event.

Definition

Namespace:Telerik.Windows.Controls.Docking

Assembly:Telerik.Windows.Controls.Docking.dll

Syntax:

C#
public class PreviewShowCompassEventArgs : EventArgs

Inheritance: objectEventArgsPreviewShowCompassEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the PreviewShowCompassEventArgs class.

C#
public PreviewShowCompassEventArgs(RadPaneGroup targetGroup, object draggedElement, Compass compass)
Parameters:targetGroupRadPaneGroup

The target group.

draggedElementobject

The dragged element.

compassCompass

The compass that is going to be shown.

Properties

Gets or sets a value indicating whether the action is canceled.

C#
public bool Canceled { get; set; }
Property Value:

True if the action must be canceled; otherwise, false.

Gets or sets a value indicating whether a RadPane can be dropped on the TabStrip of the RadPaneGroup or reordered.

C#
public bool? CanDropOnTabStrip { get; set; }
Property Value:

TrueCan be dropped in RadPaneGroup or reordered.False Cannot be dropped in RadPaneGroup or reordered.Null Gets the value of the IsCenterIndicatorVisible.

Gets the compass that is going to be shown.

C#
public Compass Compass { get; }
Property Value:

The compass that is going to be shown.

Gets the dragged element.

C#
public object DraggedElement { get; }
Property Value:

The dragged element. It can be RadSplitContainer, RadPaneGroup or a RadPane.

Gets the target group.

C#
public RadPaneGroup TargetGroup { get; }
Property Value:

The target group.