Itβs best practice to override the method that fires the event, for example:
protected override OnClick(object sender,EventArgs e) { base.OnClick(sender,e);
Of course, if he does not offer you this method (although this is true), you will have to stick with the binding to the Event itself.
source share