Properties, Methods and Events
RadFlyoutManager's Properties
Property | Description |
---|---|
FlyoutInstance | Return instance of FlyoutScreen |
IsActive | Get whether the Flyout is currently active or not |
ActivateAssociatedFormOnClose | Gets or sets a value indicating whether the associated form will be activated(focused) when the flyout is closed. |
RadFlyoutManager's Methods
Method | Description |
---|---|
Show | Show the Flyout screen over the passed control with the set type of user control |
Close | Close the Flyout screen. |
RadFlyoutManager's Events
Event | Description |
---|---|
FormLoad | Occurs when the flyout screen has been loaded. |
FormShown | Occurs when the flyout screen is shown. |
FlyoutClosed | Occurs when the flyout screen has been closed. |
ContentCreated | Occurs when the flyout screen is shown. |
Note that all events are created on a separate System.Threading.Threads and it is required to use BeginInvoke/Invoke when accessing it in order to prevent cross-thread exceptions. Also, these events are static and you need to explicitly unsubscribe from them in order to prevent memory leaks. Each object that is subscribed to one of these events cannot be garbage collected.