18 instantiations of TaskDialogPage
Accessibility_Core_App (3)
TaskDialogTesting.cs (3)
12TaskDialogPage page1 = new() 53TaskDialog.ShowDialog(new TaskDialogPage() 65TaskDialogPage page2 = new()
System.Windows.Forms.Tests (2)
System\Windows\Forms\TaskDialogTests.cs (2)
19TaskDialogPage page = new(); 43TaskDialogPage page = new();
WinFormsControlsTest (13)
TaskDialogSamples.cs (13)
71TaskDialogButton result = TaskDialog.ShowDialog(this, new TaskDialogPage() 91TaskDialogPage page = new() 131TaskDialogPage page = new() 156TaskDialogPage page = new() 200TaskDialogPage page = new() 258TaskDialogPage initialPage = new() 287TaskDialogPage inProgressPage = new() 320TaskDialogPage finishedPage = new() 416TaskDialogPage page = new() 462TaskDialogPage page1 = new() 503TaskDialog.ShowDialog(new TaskDialogPage() 515TaskDialogPage page2 = new() 544TaskDialogPage page = new()
83 references to TaskDialogPage
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
12TaskDialogPage page1 = new() 65TaskDialogPage page2 = new()
System.Windows.Forms (68)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (27)
68private TaskDialogPage? _boundPage; 71/// A queue of <see cref="TaskDialogPage"/>s that have been bound by 77private readonly Queue<TaskDialogPage> _waitingNavigationPages = new(); 91/// <see cref="TaskDialogPage.Created"/> event has been called for the 92/// current <see cref="TaskDialogPage"/> and so the corresponding 93/// <see cref="TaskDialogPage.Destroyed"/> can be called later. 98/// <see cref="TaskDialogPage.Destroyed"/> event without raising the 99/// <see cref="TaskDialogPage.Created"/> event first (e.g. if navigation 143/// so that <see cref="ShowDialog(IntPtr, TaskDialogPage, TaskDialogStartupLocation)"/> can then return it. 159/// <see cref="Navigate(TaskDialogPage)"/>. 163/// This is used to detect if you call <see cref="Navigate(TaskDialogPage)"/> 164/// from within an event raised by <see cref="Navigate(TaskDialogPage)"/>, 224/// Gets a value that indicates whether <see cref="ShowDialog(IntPtr, TaskDialogPage, TaskDialogStartupLocation)"/> is 327TaskDialogPage page, 361TaskDialogPage page, 395TaskDialogPage page, 458TaskDialogPage page, 491TaskDialogPage page, 525TaskDialogPage page, 548TaskDialogPage page, 682foreach (TaskDialogPage dialogPage in _waitingNavigationPages) 902if (TaskDialogPage.IsNativeStringNullOrEmpty(caption)) 1193internal unsafe void Navigate(TaskDialogPage page) 1324TaskDialogPage element = _waitingNavigationPages.Dequeue(); 1348TaskDialogPage page, 1641$"{nameof(TaskDialogPage)}.{nameof(TaskDialogPage.Created)}"));
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButton.cs (7)
45/// <see cref="TaskDialogPage.HelpRequest"/> event afterwards). 99/// <see cref="TaskDialogPage.AllowCancel"/>). 140/// <see cref="TaskDialogPage.HelpRequest"/> event. 159/// <see cref="TaskDialogPage.HelpRequest"/> should be raised. 239/// <see cref="TaskDialogPage.AllowCancel"/> is set), or to call the 337/// but the <see cref="TaskDialogPage.Created"/> event has not been raised yet. 377internal TASKDIALOG_FLAGS Bind(TaskDialogPage page, int customButtonID)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButtonCollection.cs (1)
23internal TaskDialogPage? BoundPage { get; set; }
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (6)
26/// Gets the <see cref="TaskDialogPage"/> instance which this control 30/// The <see cref="TaskDialogPage"/> instance which this control is bound to, or 37/// <see cref="TaskDialogPage.BoundDialog"/>. 41/// different <see cref="TaskDialogPage"/> instance at the same time. 44public TaskDialogPage? BoundPage { get; private set; } 58internal TASKDIALOG_FLAGS Bind(TaskDialogPage page)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogExpander.cs (1)
196internal override bool IsCreatable => base.IsCreatable && !TaskDialogPage.IsNativeStringNullOrEmpty(_text);
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogFootnote.cs (6)
101/// <see cref="TaskDialogPage.Created"/> event has not been raised yet. 120TaskDialogPage.GetFooterIconValue(value); 139internal override bool IsCreatable => base.IsCreatable && !TaskDialogPage.IsNativeStringNullOrEmpty(_text); 147internal TASKDIALOG_FLAGS Bind(TaskDialogPage page, out TASKDIALOGCONFIG._Anonymous2_e__Union icon) 151icon = TaskDialogPage.GetFooterIconValue(_icon).iconUnion; 161_boundIconIsFromHandle = TaskDialogPage.GetFooterIconValue(_icon).iconIsFromHandle ?? false;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogIcon.cs (1)
10/// (by setting the <see cref="TaskDialogPage.Icon"/> property) or in the
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogLinkClickedEventArgs.cs (1)
7/// Provides data for the <see cref="TaskDialogPage.LinkClicked"/> event.
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (12)
14/// <see cref="Navigate(TaskDialogPage)"/> method with a target <see cref="TaskDialogPage"/> 65/// has created the GUI elements represented by this <see cref="TaskDialogPage"/> instance. 80/// by this <see cref="TaskDialogPage"/> instance and it is about to be 101/// Initializes a new instance of the <see cref="TaskDialogPage"/> class. 460/// <see cref="TaskDialogPage"/> where this flag is set, it will keep on 461/// subsequent navigations to a new <see cref="TaskDialogPage"/> even when 618public void Navigate(TaskDialogPage page) 701$"{nameof(TaskDialogPage)}.{nameof(Created)}")); 749nameof(TaskDialogPage), 760nameof(TaskDialogPage), 773nameof(TaskDialogPage),
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogProgressBar.cs (1)
43/// except if this instance is the default instance created by a <see cref="TaskDialogPage"/>,
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (2)
113/// but the <see cref="TaskDialogPage.Created"/> event has not been raised yet. 266internal TASKDIALOG_FLAGS Bind(TaskDialogPage page, int radioButtonID)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButtonCollection.cs (1)
23internal TaskDialogPage? BoundPage { get; set; }
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogVerificationCheckBox.cs (2)
88/// verification checkbox instance, but the <see cref="TaskDialogPage.Created"/> event has not been raised yet. 115internal override bool IsCreatable => base.IsCreatable && !TaskDialogPage.IsNativeStringNullOrEmpty(_text);
System.Windows.Forms.Tests (2)
System\Windows\Forms\TaskDialogTests.cs (2)
19TaskDialogPage page = new(); 43TaskDialogPage page = new();
WinFormsControlsTest (11)
TaskDialogSamples.cs (11)
91TaskDialogPage page = new() 131TaskDialogPage page = new() 156TaskDialogPage page = new() 200TaskDialogPage page = new() 258TaskDialogPage initialPage = new() 287TaskDialogPage inProgressPage = new() 320TaskDialogPage finishedPage = new() 416TaskDialogPage page = new() 462TaskDialogPage page1 = new() 515TaskDialogPage page2 = new() 544TaskDialogPage page = new()