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