2 writes to BoundDialog
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (2)
850BoundDialog = owner; 993BoundDialog = null;
40 references to BoundDialog
System.Windows.Forms (38)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButton.cs (3)
190BoundPage!.BoundDialog!.SetButtonEnabled(ButtonID, value); 222BoundPage!.BoundDialog!.SetButtonElevationRequiredState(ButtonID, value); 346BoundPage!.BoundDialog!.ClickButton(ButtonID);
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (1)
37/// <see cref="TaskDialogPage.BoundDialog"/>.
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogExpander.cs (1)
89BoundPage.BoundDialog!.UpdateTextElement(
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogFootnote.cs (2)
76BoundPage.BoundDialog!.UpdateTextElement( 130BoundPage.BoundDialog!.UpdateIconElement(
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (20)
72/// When this event occurs, the <see cref="BoundDialog"/> property will return 88/// After this event occurs, the <see cref="BoundDialog"/> property will return 293BoundDialog?.UpdateCaption(value); 316if (BoundDialog is not null) 327BoundDialog.UpdateTextElement(TASKDIALOG_ELEMENTS.TDE_MAIN_INSTRUCTION, value); 352if (BoundDialog is not null) 360BoundDialog.UpdateTextElement(TASKDIALOG_ELEMENTS.TDE_CONTENT, value); 401if (BoundDialog is not null) 414BoundDialog.UpdateIconElement( 579/// Gets a value that indicates if the <see cref="BoundDialog"/> 583internal bool WaitingForInitialization => BoundDialog is not null && !_appliedInitialization; 609/// The page instance is not currently bound to a dialog, <see cref="BoundDialog"/> is <see langword="null"/>. 622if (BoundDialog is null) 627BoundDialog.Navigate(page); 689if (BoundDialog is not null) 707if (BoundDialog is null) 734if (BoundDialog is null) 745if (BoundDialog is not null) 843if (BoundDialog is not null) 964if (BoundDialog is null)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogProgressBar.cs (5)
142BoundPage.BoundDialog!.SetProgressBarRange(value, _maximum); 188BoundPage.BoundDialog!.SetProgressBarRange(_minimum, value); 234BoundPage.BoundDialog!.SetProgressBarPosition(value); 246BoundPage.BoundDialog!.SetProgressBarPosition(value); 345TaskDialog taskDialog = BoundPage.BoundDialog!;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (4)
64BoundPage!.BoundDialog!.SetRadioButtonEnabled(_radioButtonID, value); 204if (BoundPage.BoundDialog!.RadioButtonClickedStackCount > 0) 219BoundPage.BoundDialog.ClickRadioButton(_radioButtonID); 235TaskDialog boundDialog = BoundPage.BoundDialog;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogVerificationCheckBox.cs (2)
110BoundPage.BoundDialog!.ClickCheckBox(value); 125BoundPage!.BoundDialog!.ClickCheckBox(_checked, true);
System.Windows.Forms.Tests (2)
System\Windows\Forms\TaskDialogTests.cs (2)
24page.BoundDialog.Close(); 50page.BoundDialog.Close();