2 writes to BoundPage
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (2)
60BoundPage = page.OrThrowIfNull(); 78BoundPage = null;
39 references to BoundPage
System.Windows.Forms (39)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButton.cs (4)
190BoundPage!.BoundDialog!.SetButtonEnabled(ButtonID, value); 222BoundPage!.BoundDialog!.SetButtonElevationRequiredState(ButtonID, value); 346BoundPage!.BoundDialog!.ClickButton(ButtonID); 442return BoundPage?.WaitingForInitialization == false && IsCreated;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (4)
130private protected void DenyIfBound() => BoundPage?.DenyIfBound(); 132private protected void DenyIfWaitingForInitialization() => BoundPage?.DenyIfWaitingForInitialization(); 138if (BoundPage is null) 146if (BoundPage is not null && !IsCreated)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogExpander.cs (3)
78if (BoundPage is not null) 83if (BoundPage.WaitingForInitialization) 89BoundPage.BoundDialog!.UpdateTextElement(
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogFootnote.cs (5)
65if (BoundPage is not null) 70if (BoundPage.WaitingForInitialization) 76BoundPage.BoundDialog!.UpdateTextElement( 117if (BoundPage is not null) 130BoundPage.BoundDialog!.UpdateIconElement(
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (1)
769.Any(c => c?.BoundPage is not null))
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogProgressBar.cs (12)
77if (BoundPage is not null && value == TaskDialogProgressBarState.None) 87if (BoundPage?.WaitingForInitialization == false) 140if (BoundPage?.WaitingForInitialization == false && !ProgressBarStateIsMarquee(_state)) 142BoundPage.BoundDialog!.SetProgressBarRange(value, _maximum); 186if (BoundPage?.WaitingForInitialization == false && !ProgressBarStateIsMarquee(_state)) 188BoundPage.BoundDialog!.SetProgressBarRange(_minimum, value); 232if (BoundPage?.WaitingForInitialization == false && !ProgressBarStateIsMarquee(_state)) 234BoundPage.BoundDialog!.SetProgressBarPosition(value); 246BoundPage.BoundDialog!.SetProgressBarPosition(value); 291if (BoundPage?.WaitingForInitialization == false && ProgressBarStateIsMarquee(_state)) 343Debug.Assert(BoundPage is not null); 345TaskDialog taskDialog = BoundPage.BoundDialog!;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (7)
64BoundPage!.BoundDialog!.SetRadioButtonEnabled(_radioButtonID, value); 132if (BoundPage is null) 204if (BoundPage.BoundDialog!.RadioButtonClickedStackCount > 0) 219BoundPage.BoundDialog.ClickRadioButton(_radioButtonID); 235TaskDialog boundDialog = BoundPage.BoundDialog; 293foreach (TaskDialogRadioButton radioButton in BoundPage!.RadioButtons) 328return BoundPage?.WaitingForInitialization == false && IsCreated;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogVerificationCheckBox.cs (3)
101if (BoundPage is null) 110BoundPage.BoundDialog!.ClickCheckBox(value); 125BoundPage!.BoundDialog!.ClickCheckBox(_checked, true);