read-only checkbox

  • Thread starter Thread starter Guest
  • Start date Start date
this.checkBox1.CheckedChanged += new
System.EventHandler(this.checkBox1_CheckedChanged);

private void checkBox1_CheckedChanged(object sender, System.EventArgs e)

{

checkBox1.Checked = false;

}
 
LOL. You're Alex K too. I'm Alex Korchemniy :)

Well you can derive from the CheckBox control and disable whatever you need.
I think you're looking for OnClick
 
Back
Top