2 writes to IsCreated
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (2)
65
IsCreated
= IsCreatable;
77
IsCreated
= false;
13 references to IsCreated
System.Windows.Forms (13)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (1)
291
return !(button?.
IsCreated
== true && button.IsStandardButton &&
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButton.cs (1)
442
return BoundPage?.WaitingForInitialization == false &&
IsCreated
;
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogControl.cs (4)
67
return
IsCreated
? BindCore() : default;
72
if (
IsCreated
)
87
if (
IsCreated
)
146
if (BoundPage is not null && !
IsCreated
)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (6)
883
if (standardButton.
IsCreated
)
900
if (defaultButton.
IsCreated
)
913
if (radioButton.
IsCreated
&& radioButton.Checked)
924
customButtonElements = _boundCustomButtons.Where(e => e.
IsCreated
).Select(e => (e.ButtonID, e.GetResultingText()!));
925
radioButtonElements = radioButtons.Where(e => e.
IsCreated
).Select(e => (e.RadioButtonID, e.Text!));
929
if (_boundCustomButtons.Any(e => e.
IsCreated
&& e is TaskDialogCommandLinkButton))
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (1)
328
return BoundPage?.WaitingForInitialization == false &&
IsCreated
;