TaskDialogPage.BoundDialog Property

Definition

Gets the TaskDialog instance which this page is currently bound to.

public:
 property System::Windows::Forms::TaskDialog ^ BoundDialog { System::Windows::Forms::TaskDialog ^ get(); };
public System.Windows.Forms.TaskDialog? BoundDialog { get; }
member this.BoundDialog : System.Windows.Forms.TaskDialog
Public ReadOnly Property BoundDialog As TaskDialog

Property Value

The TaskDialog instance which this page is bound to, or null if this page is not currently bound.

Remarks

A page will be bound while it is being displayed, which is indicated by the events Created and Destroyed.

While a page is bound to a task dialog, you cannot show that page instance using a different TaskDialog instance at the same time.

Applies to