Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there good example code or a test project for explaining the Model–view–presenter (MVP) pattern. There are a lot of explanation links, but I want to have some good example code to show others without reinventing the wheel.

share|improve this question

4 Answers

up vote 18 down vote accepted

Jeremy Miller's "Build your own CAB" series is fantastic. You get a nice dose of MVP (along with some other smart client patterns such as Pub/Sub).

http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx

share|improve this answer

I've used with success the following open source project to implement the MVP pattern in ASP.NET + WinForms + C#:

  • Castle Project.

Take a look at my blog post which shows a complete ASP.NET Web Application sample:

Model View Presenter pattern with Castle in ASP.NET

share|improve this answer

You may want to try the Claymore Framework.

share|improve this answer

I don't see a link to the actual source code used in the screencast, but you could have them watch Jean Paul Boodhoo's dnrTV MVP screencast. The video is more useful than just reading code without an understanding of the underlying context in my opinion.

Edit: Didn't notice the WinForms in the question title at first. The screencast is ASP.Net WebForms, but it should be apparent how to apply MVP in WinForms as well.

share|improve this answer
The content is no longer available. – Nano Taboada Jul 31 '11 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.