1 instantiation of TaskDialogRadioButton
System.Windows.Forms (1)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButtonCollection.cs (1)
35
TaskDialogRadioButton button =
new
()
36 references to TaskDialogRadioButton
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
82
var
radioButton1 = page1.RadioButtons.Add("Radi&oButton1");
83
var
radioButton2 = page1.RadioButtons.Add("RadioB&utton2");
System.Windows.Forms (32)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (5)
251
/// <see cref="
TaskDialogRadioButton
.CheckedChanged"/> event for the
256
/// This is used by the <see cref="
TaskDialogRadioButton
.Checked"/> setter
1139
TaskDialogRadioButton
radioButton = _boundPage.GetBoundRadioButtonByID(radioButtonID)!;
1219
$"{nameof(
TaskDialogRadioButton
)}.{nameof(
TaskDialogRadioButton
.CheckedChanged)}"));
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (5)
613
/// This method is called from within the <see cref="
TaskDialogRadioButton
.CheckedChanged"/> event
732
internal
TaskDialogRadioButton
? GetBoundRadioButtonByID(int buttonID)
909
TaskDialogRadioButton
radioButton = radioButtons[i];
980
foreach (
TaskDialogRadioButton
radioButton in radioButtons)
1028
foreach (
TaskDialogRadioButton
button in radioButtons)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (9)
25
/// Initializes a new instance of the <see cref="
TaskDialogRadioButton
"/> class.
32
/// Initializes a new instance of the <see cref="
TaskDialogRadioButton
"/> class
98
/// Gets or set a value indicating whether the <see cref="
TaskDialogRadioButton
"/> is
102
/// <see langword="true"/> if the <see cref="
TaskDialogRadioButton
"/> is in the checked state;
142
foreach (
TaskDialogRadioButton
radioButton in _collection)
208
$"{nameof(
TaskDialogRadioButton
)}.{nameof(Checked)}",
209
$"{nameof(
TaskDialogRadioButton
)}.{nameof(CheckedChanged)}"));
261
/// Returns a string that represents the current <see cref="
TaskDialogRadioButton
"/> control.
293
foreach (
TaskDialogRadioButton
radioButton in BoundPage!.RadioButtons)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButtonCollection.cs (13)
9
/// Represents a collection of <see cref="
TaskDialogRadioButton
"/> objects.
11
public class TaskDialogRadioButtonCollection : Collection<
TaskDialogRadioButton
>
14
private readonly HashSet<
TaskDialogRadioButton
> _itemSet = [];
26
/// Creates and adds a <see cref="
TaskDialogRadioButton
"/> to the collection.
29
/// <returns>The created <see cref="
TaskDialogRadioButton
"/>.</returns>
33
public
TaskDialogRadioButton
Add(string? text)
35
TaskDialogRadioButton
button = new()
56
protected override void SetItem(int index,
TaskDialogRadioButton
item)
65
TaskDialogRadioButton
oldItem = this[index];
96
protected override void InsertItem(int index,
TaskDialogRadioButton
item)
124
TaskDialogRadioButton
oldItem = this[index];
140
foreach (
TaskDialogRadioButton
button in this)
149
private void DenyIfHasOtherCollection(
TaskDialogRadioButton
item)
WinFormsControlsTest (2)
TaskDialogSamples.cs (2)
532
var
radioButton1 = page1.RadioButtons.Add("Radi&oButton 1");
533
var
radioButton2 = page1.RadioButtons.Add("RadioB&utton 2");