2 instantiations of TaskDialog
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (2)
421dialog = new(); 528TaskDialog dialog = new();
21 references to TaskDialog
System.Windows.Forms (21)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (7)
82/// <see cref="TaskDialog"/> instance. 196/// Initializes a new instance of the <see cref="TaskDialog"/> class using the 217throw new InvalidOperationException(string.Format(SR.IllegalCrossThreadCall, nameof(TaskDialog))); 276(((GCHandle)lpRefData).Target as TaskDialog)!.HandleTaskDialogCallback( 400TaskDialog? dialog = null; 528TaskDialog dialog = new(); 553throw new InvalidOperationException(string.Format(SR.TaskDialogInstanceAlreadyShown, nameof(TaskDialog)));
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.WindowSubclassHandler.cs (2)
10private readonly TaskDialog _taskDialog; 12public WindowSubclassHandler(TaskDialog taskDialog)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (10)
73/// the <see cref="TaskDialog"/> instance which this page is bound to. 559/// Gets the <see cref="TaskDialog"/> instance which this page 563/// The <see cref="TaskDialog"/> instance which this page is bound to, or <see langword="null"/> 573/// different <see cref="TaskDialog"/> instance at the same time. 576public TaskDialog? BoundDialog { get; private set; } 600/// <see cref="TaskDialog.Close"/> or navigating the dialog again). 750nameof(TaskDialog))); 761nameof(TaskDialog))); 774nameof(TaskDialog))); 833TaskDialog owner,
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogProgressBar.cs (1)
345TaskDialog taskDialog = BoundPage.BoundDialog!;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (1)
235TaskDialog boundDialog = BoundPage.BoundDialog;