Getting Started with WinForms Flyout Screen
This tutorial will walk you through how you can use Flyout Screen.
The Flyout screen can be activated through the RadFlyoutManager.Show() method. This method accepts two parameters. The first one is the control which the flyout will appear on top of it. The second parameter is the type of user control that will be used as content. The flyout screen can be used as a notification pop-up to notify for long-running operations. The second option is to be used in scenarios where additional information is required from the end user to continue using the application. In both cases, we can close the flyout screen by calling the RadFlyoutManager.Close() static method.
Show Flyout
RadFlyoutManager.Show(this.radGridView1,typeof(MyUserControl));
RadFlyoutManager.Show(Me.radGridView1, GetType(UserControl1))
Close Flyout
RadFlyoutManager.Close();
RadFlyoutManager.Close()
Telerik UI for WinForms Learning Resources
- Telerik UI for WinForms flyout Component
- Getting Started with Telerik UI for WinForms Components
- Telerik UI for WinForms Setup
- Telerik UI for WinForms Application Modernization
- Telerik UI for WinForms Visual Studio Templates
- Deploy Telerik UI for WinForms Applications
- Telerik UI for WinForms Virtual Classroom(Training Courses for Registered Users)
- Telerik UI for WinForms License Agreement)