I am developing a GUI application in C# using the design mode in VS2008. Now that I am finished with the looks of the application I am ready to add some functionality to it.
What really confuses me though, is that VS2008 designer only uses the empty constructor. When developing applications in Java I normally pass around a model and controller object to every view object in the constructor.
I am unsure if I have used the designer too much and needs to hardcode more or if there is some other way to do it. How do you pass around data to view objects?
Hope you understand me