How to disable radio button on Checked Changed using WinForms in C#

1 Answer

0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            radioButton1.Enabled = false;
        }
    }
}




/*
run:
 
  
*/

 



answered Feb 5, 2024 by avibootz
edited Feb 5, 2024 by avibootz

Related questions

...