allow custom method binding to actions of a control.
I'd like to be able to handle methods of standard ASP.NET web form controls using methods which aren't restricted to just the event handlers in the code behind.
0
votes
1 comment
-
Tatham Oddie
commented
Events can point to any protected or public method on the underlying class with the appropriate delegate. How would you expect this to change? Code mockup?