Class RadFlyoutManager
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadFlyoutManager : BaseSplashManager
Constructors
RadFlyoutManager()
Declaration
public RadFlyoutManager()
Properties
ActivateAssociatedFormOnClose
Gets or sets a value indicating whether the associated form will be activated(focused) when the flyout is closed.
Declaration
public static bool ActivateAssociatedFormOnClose { get; set; }
Property Value
System.Boolean
|
FlyoutInstance
Gets or sets the flyout screen instance.
Declaration
public static FlyoutScreen FlyoutInstance { get; set; }
Property Value
FlyoutScreen
|
IsActive
Gets a value indicating whether or not there is a flyout screen opened.
Declaration
public static bool IsActive { get; }
Property Value
System.Boolean
|
Methods
Close()
Closes the flyout form.
Declaration
public static void Close()
Show(Control, Type)
Shows a an overlay form with flyout content on top of it.
Declaration
public static void Show(Control controlToAssociate, Type flyoutContentType)
Parameters
System.Windows.Forms.Control
controlToAssociate
The associated control. |
System.Type
flyoutContentType
The type of the flyout content. |
Events
ContentCreated
Occurs when the flyout content has been created. Note that the control is created on a separate System.Threading.Thread and it is required to use BeginInvoke/Invoke when accessing it in order to prevent cross thread exceptions. Note that this is a static event and you need to explicitly unsubscribe from it in order to prevent memory leaks. Each object that is subscribed to this event cannot be garbage collected.
Declaration
public static event ContentCreatedEventHandler ContentCreated
Event Type
ContentCreatedEventHandler
|
FlyoutClosed
Occurs when the flyout form has been closed. Note that the control is created on a separate System.Threading.Thread and it is required to use BeginInvoke/Invoke when accessing it in order to prevent cross thread exceptions. Note that this is a static event and you need to explicitly unsubscribe from it in order to prevent memory leaks. Each object that is subscribed to this event cannot be garbage collected.
Declaration
public static event FlyoutClosedEventHandler FlyoutClosed
Event Type
FlyoutClosedEventHandler
|