RadTaskDialog
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class RadTaskDialog : Component, IComponent, IDisposable
Inheritance: objectMarshalByRefObjectComponentRadTaskDialog
Implements:
Inherited Members
Constructors
public RadTaskDialog()
Properties
Gets the current RadTaskDialogForm that is about to be shown. Note that if the form is already shown, this property will return a new instance of RadTaskDialogForm To access shown forms use the OpenedForms property.
public static RadTaskDialogForm CurrentForm { get; }
OpenedForms
IList<RadTaskDialogForm>
Gets a collection of the opened task dialog forms.
public static IList<RadTaskDialogForm> OpenedForms { get; }
Methods
Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton Show(IntPtr hwndOwner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
The handle of the owner window.
pageRadTaskDialogPageThe page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.
Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton Show(IWin32Window owner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
An implementation of IWin32Window that will own the RadTaskDialog.
pageRadTaskDialogPageThe page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.
Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton Show(RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
The page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.
Displays a modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton ShowDialog(IntPtr hwndOwner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
The handle of the owner window.
pageRadTaskDialogPageThe page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.
Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton ShowDialog(IWin32Window owner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
An implementation of IWin32Window that will own the RadTaskDialog.
pageRadTaskDialogPageThe page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.
Displays a modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.
public static RadTaskDialogButton ShowDialog(RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
The page that is going to be displayed.
startupLocationRadTaskDialogStartupLocationThe startup location of the task dialog form.
Returns:The pressed button from the user.