I have a form that will contain several copies of a user control, what I want to do is that when within one of those user controls a button is clicked, an event of the form that contains it is launched.
I thought about saving a reference of the form in the constructor of the user control and thus be able to call any method of that form, but it seems to me an inelegant solution.
I would appreciate if someone can indicate to me some more elegant way of doing this.