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

Definition

Constructors

C#
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.

C#
public static RadTaskDialogForm CurrentForm { get; }

Gets a collection of the opened task dialog forms.

C#
public static IList<RadTaskDialogForm> OpenedForms { get; }

Methods

Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton Show(IntPtr hwndOwner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:hwndOwnerIntPtr

The handle of the owner window.

pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.

Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton Show(IWin32Window owner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:ownerIWin32Window

An implementation of IWin32Window that will own the RadTaskDialog.

pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.

Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton Show(RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.

Displays a modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton ShowDialog(IntPtr hwndOwner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:hwndOwnerIntPtr

The handle of the owner window.

pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.

Displays a non-modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton ShowDialog(IWin32Window owner, RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:ownerIWin32Window

An implementation of IWin32Window that will own the RadTaskDialog.

pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.

Displays a modal RadTaskDialog with UI that is specified by the RadTaskDialogPage.

C#
public static RadTaskDialogButton ShowDialog(RadTaskDialogPage page, RadTaskDialogStartupLocation startupLocation = RadTaskDialogStartupLocation.CenterOwner)
Parameters:pageRadTaskDialogPage

The page that is going to be displayed.

startupLocationRadTaskDialogStartupLocation

The startup location of the task dialog form.

Returns:

RadTaskDialogButton

The pressed button from the user.