Dynamic Button Array Event Handler

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

Does anyone have an example of how to handle double click event in one method (all of the buttons in the array would use the same method) for an array of buttons that were created dynamically?


Thanks


Peter
 
Look up the AddHandler statement in the documentation.

Create a common event handler and add the handlers manually.

/JB
 
Thank you, that's what I needed.

Joergen Bech @ post1.tele.dk> said:
Look up the AddHandler statement in the documentation.

Create a common event handler and add the handlers manually.

/JB
 
Back
Top