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

This interface describes a the behavior of the flyout of the AutoHideArea of the RadDocking control.

Definition

Namespace:Telerik.Windows.Controls.Docking

Assembly:Telerik.Windows.Controls.Docking.dll

Syntax:

C#
public interface IFlyoutBehavior

Derived Classes: ClickFlyoutBehaviorHoverFlyoutBehavior

Methods

This method is called when the time of the close timer is up. Commonly the close animation is started here. The close timer is started by calling the StartCloseTimer method of the IFlyoutHost.

C#
void OnClosingTimerTimeout(IFlyoutHost host)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the flyout.

This method is called when the mouse enters a RadPane.

C#
void OnMouseEnter(IFlyoutHost host, RadPane targetPane)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the RadPane.

targetPaneRadPane

The RadPane in which the mouse just entered.

This method is called when the mouse leaves a RadPane.

C#
void OnMouseLeave(IFlyoutHost host)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the RadPane.

This method is called when the time of the open timer is up. Commonly the open animation is started here. The open timer is started by calling the StartOpenTimer method of the IFlyoutHost.

C#
void OnOpeningTimerTimeout(IFlyoutHost host)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the flyout.

This method is called when a RadPane is being activated.

C#
void OnPaneActivated(IFlyoutHost host, RadPane targetPane)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the RadPane.

targetPaneRadPane

The RadPane which just got activated.

This method is called when a RadPane is being deactivated.

C#
void OnPaneDeactivated(IFlyoutHost host, RadPane targetPane)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the RadPane.

targetPaneRadPane

The RadPane which just got deactivated.

This method is called when a pane receives the MouseLeftButtonDown event (i.e. when the user clicks it).

C#
void OnPaneMouseLeftButtonDown(IFlyoutHost host, RadPane targetPane)
Parameters:hostIFlyoutHost

The AutoHideArea hosting the RadPane.

targetPaneRadPane

The RadPane which just got clicked.