I am converting a Delphi 7.0 application to .Net(2.0).
In Delphi application there is similar implementation like "User Control", So I too did same in my C# application.
But in Delphi it is possible to code UserControl's events implemantations on main(parent), unlikely in .Net it is a must(not sure) to do it at UserControl level.
My Questions are,
- Can't we do same in .Net?
- Altenative method(direct) method of doing that
Note: I have achived what I want through delegates/events, But I prefer the way done it in Delphi