11 references to CheckedChanged
Accessibility_Core_App (2)
TaskDialogTesting.cs (2)
85radioButton1.CheckedChanged += (s, e) => Console.WriteLine($"RadioButton1 CheckedChanged: {radioButton1.Checked}"); 86radioButton2.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)}")); 331private void OnCheckedChanged(EventArgs e) => CheckedChanged?.Invoke(this, e);
WinFormsControlsTest (2)
TaskDialogSamples.cs (2)
535radioButton1.CheckedChanged += (s, e) => Console.WriteLine($"RadioButton1 CheckedChanged: {radioButton1.Checked}"); 536radioButton2.CheckedChanged += (s, e) => Console.WriteLine($"RadioButton2 CheckedChanged: {radioButton2.Checked}");