1 instantiation of TaskDialogRadioButton
System.Windows.Forms (1)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButtonCollection.cs (1)
35TaskDialogRadioButton button = new()
36 references to TaskDialogRadioButton
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
82var radioButton1 = page1.RadioButtons.Add("Radi&oButton1"); 83var 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 1139TaskDialogRadioButton 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 732internal TaskDialogRadioButton? GetBoundRadioButtonByID(int buttonID) 909TaskDialogRadioButton radioButton = radioButtons[i]; 980foreach (TaskDialogRadioButton radioButton in radioButtons) 1028foreach (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; 142foreach (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. 293foreach (TaskDialogRadioButton radioButton in BoundPage!.RadioButtons)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButtonCollection.cs (13)
9/// Represents a collection of <see cref="TaskDialogRadioButton"/> objects. 11public class TaskDialogRadioButtonCollection : Collection<TaskDialogRadioButton> 14private readonly HashSet<TaskDialogRadioButton> _itemSet = []; 26/// Creates and adds a <see cref="TaskDialogRadioButton"/> to the collection. 29/// <returns>The created <see cref="TaskDialogRadioButton"/>.</returns> 33public TaskDialogRadioButton Add(string? text) 35TaskDialogRadioButton button = new() 56protected override void SetItem(int index, TaskDialogRadioButton item) 65TaskDialogRadioButton oldItem = this[index]; 96protected override void InsertItem(int index, TaskDialogRadioButton item) 124TaskDialogRadioButton oldItem = this[index]; 140foreach (TaskDialogRadioButton button in this) 149private void DenyIfHasOtherCollection(TaskDialogRadioButton item)
WinFormsControlsTest (2)
TaskDialogSamples.cs (2)
532var radioButton1 = page1.RadioButtons.Add("Radi&oButton 1"); 533var radioButton2 = page1.RadioButtons.Add("RadioB&utton 2");