OnLoad is beeing called when callin base.Onload(e) in Onload method
- by Bilel Boughanmi
I have a view (userControl) and I am overriding it's OnLoad and OnLayout methods . When view is closed the OnLayout method is executed and the call to base.OnLayout(e) fire the OnLoad method.
What is causing the OnLoad to be called and how can I avoid this behavior?
Regards.