I have seen a lot of examples for Model-View-Controller and Model-View-Presenter code, so we can find plenty of examples, like this one:
Florida.NET User Group a Success -- Thanks Dave Noderer
http://weblogs.asp.net/sco
Main Topics
Browse All TopicsWhere can I find a good example on how to completely implement the MVC pattern in Windows Forms. I found many tutorials and code examples on various sites (e.g. CodeProject, .NetHeaven) but many are more representative for the observer pattern than MVC. The application I want to develop is very simple, for a school project so I am not eager to use MVC frameworks like PureMVC.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have seen a lot of examples for Model-View-Controller and Model-View-Presenter code, so we can find plenty of examples, like this one:
Florida.NET User Group a Success -- Thanks Dave Noderer
http://weblogs.asp.net/sco
In the end I settled on a similar approach to the one presented by Robert Nadler in this article: http://rdn-consulting.com/
Business Accounts
Answer for Membership
by: philipjonathanPosted on 2009-03-18 at 20:01:09ID: 23925960
I don't have a complete example, but just want to comment on the observer pattern part. I think it is normal to have the observer pattern, because the relationship between the model and the view is actually observer pattern itself.
Another thing is that you can't really get MVC in Windows Forms, because in pure MVC, the user action is actually handled by the Controller, but in Windows Forms, this is handled by the UI control through event (eg. Button1_Click event handler). So you can just think of the event handler as the Controller component.