2 instantiations of TaskDialog
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (2)
425dialog = new(); 532TaskDialog dialog = new();
35 references to TaskDialog
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
53TaskDialog.ShowDialog(new TaskDialogPage() 88var dialogResult = TaskDialog.ShowDialog(page1);
System.Windows.Forms (21)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (7)
83/// <see cref="TaskDialog"/> instance. 197/// Initializes a new instance of the <see cref="TaskDialog"/> class using the 218throw new InvalidOperationException(string.Format(SR.IllegalCrossThreadCall, nameof(TaskDialog))); 277(((GCHandle)lpRefData).Target as TaskDialog)!.HandleTaskDialogCallback( 404TaskDialog? dialog = null; 532TaskDialog dialog = new(); 557throw 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;
System.Windows.Forms.Tests (2)
System\Windows\Forms\TaskDialogTests.cs (2)
27TaskDialog.ShowDialog(page); 53TaskDialog.ShowDialog(page);
WinFormsControlsTest (10)
TaskDialogSamples.cs (10)
71TaskDialogButton result = TaskDialog.ShowDialog(this, new TaskDialogPage() 113var resultButton = TaskDialog.ShowDialog(this, page); 144TaskDialogButton result = TaskDialog.ShowDialog(this, page); 185TaskDialogButton result = TaskDialog.ShowDialog(this, page); 243TaskDialogButton result = TaskDialog.ShowDialog(this, page); 388TaskDialogButton result = TaskDialog.ShowDialog(initialPage); 457TaskDialog.ShowDialog(this, page); 503TaskDialog.ShowDialog(new TaskDialogPage() 538var dialogResult = TaskDialog.ShowDialog(page1); 558TaskDialog.ShowDialog(page);