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