0

I am adding check box dynamically to DataGrid. I want to generate event for this dynamically generated checkbox? Any suggestions on how can I do this?

1 Answer 1

1
  void Check_Clicked(Object sender, EventArgs e) 
  {
  }

  checkbox1.CheckedChanged += new EventHandler(this.Check_Clicked);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.