11 references to CheckedChanged
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
85
radioButton1.
CheckedChanged
+= (s, e) => Console.WriteLine($"RadioButton1 CheckedChanged: {radioButton1.Checked}");
86
radioButton2.
CheckedChanged
+= (s, e) => Console.WriteLine($"RadioButton2 CheckedChanged: {radioButton2.Checked}");
System.Windows.Forms (7)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (2)
251
/// <see cref="TaskDialogRadioButton.
CheckedChanged
"/> event for the
1219
$"{nameof(TaskDialogRadioButton)}.{nameof(TaskDialogRadioButton.
CheckedChanged
)}"));
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (1)
613
/// This method is called from within the <see cref="TaskDialogRadioButton.
CheckedChanged
"/> event
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogRadioButton.cs (4)
108
/// set it from within the <see cref="
CheckedChanged
"/> event.
118
/// The property is set within the <see cref="
CheckedChanged
"/> event of one of the radio buttons of the
209
$"{nameof(TaskDialogRadioButton)}.{nameof(
CheckedChanged
)}"));
331
private void OnCheckedChanged(EventArgs e) =>
CheckedChanged
?.Invoke(this, e);
WinFormsControlsTest (2)
TaskDialogSamples.cs (2)
535
radioButton1.
CheckedChanged
+= (s, e) => Console.WriteLine($"RadioButton1 CheckedChanged: {radioButton1.Checked}");
536
radioButton2.
CheckedChanged
+= (s, e) => Console.WriteLine($"RadioButton2 CheckedChanged: {radioButton2.Checked}");