Please can someone quickly spell this out for me.
Code:
class A{
public panel1_Click(sende, e){
CheckBox ck=new CheckBox();
}
}

class B : class A{
//how to check the state of the checkbox (ck) in class a and get it in class B
}
When the panel is clicked you have checkboxes(ck) displays on it. How do I access the state of the button in class B when it is clicked.