I am able to add checkbox dynamically on windows form and add data value to its text property. On click of any checkbox I have run a procedure which will make certain other chec
private void custom_event_handler(object sender, EventArgs e) { .... }
and then you add checbox like this:
CheckBox cb = new CheckBox(); cb.CheckedChanged += new EventHandler(custom_event_hahndler);