6 instantiations of TaskDialogVerificationCheckBox
Accessibility_Core_App (1)
TaskDialogTesting.cs (1)
79page1.Verification = new TaskDialogVerificationCheckBox("&CheckBox1");
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (1)
109_checkBox = new TaskDialogVerificationCheckBox();
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogVerificationCheckBox.cs (1)
42=> new(verificationText);
WinFormsControlsTest (3)
TaskDialogSamples.cs (3)
99Verification = new TaskDialogVerificationCheckBox() 268Verification = new TaskDialogVerificationCheckBox() 529page1.Verification = new TaskDialogVerificationCheckBox("&CheckBox");
11 references to TaskDialogVerificationCheckBox
System.Windows.Forms (10)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (3)
44private TaskDialogVerificationCheckBox? _checkBox; 174/// The verification checkbox will only be shown if its <see cref="TaskDialogVerificationCheckBox.Text"/> 181public TaskDialogVerificationCheckBox? Verification
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogVerificationCheckBox.cs (7)
21/// Initializes a new instance of the <see cref="TaskDialogVerificationCheckBox"/> class. 28/// Initializes a new instance of the <see cref="TaskDialogVerificationCheckBox"/> class with 32/// <param name="isChecked">A value indicating whether the <see cref="TaskDialogVerificationCheckBox"/> is in 41public static implicit operator TaskDialogVerificationCheckBox(string verificationText) 70/// Gets or set a value indicating whether the <see cref="TaskDialogVerificationCheckBox"/> is in 74/// <see langword="true"/> if the <see cref="TaskDialogVerificationCheckBox"/> is in the checked state; 129/// Returns a string that represents the current <see cref="TaskDialogVerificationCheckBox"/> control.
WinFormsControlsTest (1)
TaskDialogSamples.cs (1)
337TaskDialogVerificationCheckBox checkBox = initialPage.Verification;