Implementing MVC with Windows Forms - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T16:05:48Zhttp://stackoverflow.com/feeds/question/654722http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms15Implementing MVC with Windows Formsiulianchira2009-03-17T15:23:11Z2009-11-09T16:25:24Z
<p>Where 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. Since the application I want to develop is for a school project, I am reluctant to using frameworks like PureMVC or MVC#. </p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/654790#6547905Answer by BrianLy for Implementing MVC with Windows FormsBrianLy2009-03-17T15:37:04Z2009-03-23T00:50:02Z<p>Have you looked at <a href="http://trac.puremvc.org/PureMVC%5FCSharp" rel="nofollow">PureMVC</a>? I've found that no one can agree on what MVC really looks like once they start building a specific implementation.</p>
<p>Update: You could build your own starting with something simpler such as <a href="http://www.codeplex.com/MobileMVC" rel="nofollow">MobileMVC</a>. Compact Framework code should compile/run OK on Windows. Since this is a school assignment I would suggest that you actually spend some time learning how MVC actually works.</p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/671312#6713121Answer by Mike Dunlavey for Implementing MVC with Windows FormsMike Dunlavey2009-03-22T17:15:15Z2009-03-22T17:15:15Z<p>You might want to take a look at <a href="http://stackoverflow.com/questions/371898/how-does-differential-execution-work">Differential Execution</a>.</p>
<p>Here it is in <a href="http://sourceforge.net/projects/dyndlgdemo/" rel="nofollow">SourceForge</a></p>
<p>IMO, it is a vast improvement on MVC, though it is still quite unusual.</p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/671982#6719825Answer by Bob Nadler for Implementing MVC with Windows FormsBob Nadler2009-03-23T01:36:09Z2009-03-23T01:36:09Z<p>I wrote an article last year, <a href="http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/" rel="nofollow">Selecting a MVC/MVP Implementation for a Winforms Project</a>, that provides an example of a pretty simple passive view framework. Also see <a href="http://stackoverflow.com/questions/2406/looking-for-a-mvc-sample-for-winforms">here</a> and <a href="http://stackoverflow.com/questions/122388/how-would-you-implement-mvc-in-a-windowsforms-application">here</a>.</p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/682103#6821031Answer by Gary.Ray for Implementing MVC with Windows FormsGary.Ray2009-03-25T15:26:33Z2009-03-25T15:26:33Z<p>A good example at rolling your own implementation of MVC using Windows Forms can be found <a href="http://www.ii.uni.wroc.pl/~wzychla/mvc.html" rel="nofollow">here</a>. Source code is included.</p>
<p>As you read, study, and write code for this assignment you are going to find that there are a lot of disagreements on how MVC should be implemented. This one is a simple case that reflects the separation of concerns as well as a good example of the 'plumbing' required to hook this up.</p>
<p>When you are out of school you will probably want to fall back on a framework like the other posters have recommended.</p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/682216#68221617Answer by Ian Ringrose for Implementing MVC with Windows FormsIan Ringrose2009-03-25T15:53:43Z2009-11-09T16:25:24Z<p>I am of the view that applications are so different from each other and our understanding of how applications should be written is sill very limited. Past Windows Forms applications I have worked on have been so different from each other, some of the design differences I have seen are (including most combinations):</p>
<ul>
<li>Directly talk to database (2 tier)</li>
<li>Use a backend that has been written for the given application (3 tier)</li>
<li>Use a set of web services that were written for use by many applications and can’t be changed for your application. (Service-oriented architecture)</li>
<li>Updates being done by <a href="http://en.wikipedia.org/wiki/Create,%5Fread,%5Fupdate%5Fand%5Fdelete" rel="nofollow">CRUD</a> operations</li>
<li>Updates being done with the <a href="http://en.wikipedia.org/wiki/Command%5Fpattern" rel="nofollow">command pattern</a> (sending commands to backend server)</li>
<li>Lots of usages of <a href="http://www.akadia.com/services/dotnet%5Fdatabinding.html" rel="nofollow">data binding</a> / no usages of data binding</li>
<li>Most data being “table like” (e.g. invoices) that work well in standard grid controls / need custom controls for most of the UI data.</li>
<li>1 Developer / Teams of 10 or 20 developers (just on the UI)</li>
<li>Lots of unit test using mocks etc / no unit tests </li>
</ul>
<p>Therefore I don’t think it’s possible to create one implementation of MVC (or MVP) that always fits well.</p>
<p>The best posts I have seen really <strong>explaining</strong> MVC and <strong>why</strong> a MVC system is built the way it is, is the <a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx" rel="nofollow">"Build Your Own CAB" series by Jeremy D Miller</a>. After working though it you should be able to understand your options a lot better.
<a href="http://smartclient.codeplex.com/" rel="nofollow">Microsoft's Smart Client Guidance (CAB / Microsoft Composite Application Block)</a> should also be considered, it is a bit complex but can work well for applications that have a good fit.</p>
<p>Selecting a <a href="http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/" rel="nofollow">MVC/MVP Implementation for a Winforms Project</a> give an overview that is worth reading. A lot of people like <a href="http://trac.puremvc.org/PureMVC%5FCSharp" rel="nofollow">PureMVC</a>, I have never used it, but will look at it the next time I need a MVC framework.</p>
<p>"<a href="http://en.wikipedia.org/wiki/Presenter%5FFirst" rel="nofollow">Presenter First</a>" is a software development approach that combines the ideas of the Model View Presenter (MVP) design pattern and Test-Driven Development. It lets you start of by writing tests in the customer’s language .e.g </p>
<blockquote>
<p>"When I click the 'save' button then
the file should be saved and the
unsaved file warning should
disappear.”</p>
</blockquote>
<p>I have no experience using "Presenter First," but will give it a try when I get a chance, as it looks very promising.</p>
<p>Other stackoverflow questions you may may wish to look at <a href="http://stackoverflow.com/questions/2406/looking-for-a-mvc-sample-for-winforms">here</a> and <a href="http://stackoverflow.com/questions/122388/how-would-you-implement-mvc-in-a-windowsforms-application">here</a>.</p>
<p>If you are thinking of useing <strong>WPF</strong> at any point take a look at the <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">Model-View ViewModel (MVVM)</a> pattern. Here is a very good video you should take a look at: <a href="http://blog.lab49.com/archives/2650" rel="nofollow">Jason Dolinger on Model-View-ViewModel</a>. </p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/683207#6832071Answer by Rui Craveiro for Implementing MVC with Windows FormsRui Craveiro2009-03-25T20:00:37Z2009-03-25T20:00:37Z<p>Microsoft Composite Interface Application block started its life as a MVC implementation (amongst other patterns it implemented). The release version, however, evolved into an MVP implementation, which can be argued to be a kind of a different interpretation of the MVC concept.</p>
<p>If you are willing to check the code of a very complete (and somehow complex) MVP implementation, you can find the MS-CAB as one of the components of Microsoft Smart Client Software Factory. It comes with source code. You can find it <a href="http://smartclient.codeplex.com/" rel="nofollow">here</a>. Good luck!</p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/685147#6851471Answer by Jonathan Parker for Implementing MVC with Windows FormsJonathan Parker2009-03-26T10:06:29Z2009-03-26T10:06:29Z<p>I've only had a cursory glance at the code but this "tutorial" and sample project might be useful:</p>
<p><a href="http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/" rel="nofollow">http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/</a></p>
http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/685722#68572215Answer by Igor Brejc for Implementing MVC with Windows FormsIgor Brejc2009-03-26T13:12:34Z2009-08-07T17:49:55Z<p>UPDATE: In addition to my previous answer below, I suggest reading about the <a href="http://en.wikipedia.org/wiki/Presenter%5FFirst" rel="nofollow">"Presenter First" approach</a> (especially the PDF articles)</p>
<p>I would recommend MVP (PassiveView pattern actually) instead of MVC. You don't really need any special frameworks for this, it's just how you organize your code.</p>
<p>One approach (which I usually take) is to split each windows form into three entities:</p>
<ol>
<li>A presenter/controller class - this is what you actually start with when developing a form. This is where most/all of your "business" logic should reside.</li>
<li>A view interface (IView), which contains the methods, properties and events. This interface is <strong>all</strong> that the presenter knows about your form.</li>
<li>At the end, when you finish implementing the presenter and the view (including unit tests), you can then create the actual form class and make it implement the IView interface. Then it's just a question of adding appropriate controls to the form and wiring them to the interface.</li>
</ol>
<p>Example code (a simple pseudocode, just for illustration):</p>
<pre><code>interface IView
{
string Username { get; set; }
string Password { get; set; }
event EventHandler LogOnButtonClicked;
void InformUserLogOnFailed();
void MoveToMainScreen();
}
class Presenter
{
public Presenter(IView view)
{
this.view = view;
view.LogOnButtonClicked += new EventHandler(OnLogOnButton);
}
private void OnLogOnButton()
{
// we ask some service to verify the username/password
bool isLogOnOk = logOnService.IsUserAndPasswordOk(view.Username, view.Password);
if (isLogOnOk)
view.MoveToMainScreen();
else
{
view.Username = "";
view.Password = "";
view.InformUserLogOnFailed();
}
}
private IView view;
}
class Form : IView
{
public Form()
{
presenter = new Presenter(this);
}
public string Username
{
get { return TextBoxUsername.Text; }
set { TextBoxUsername.Text = value; }
}
public string Password
{
get { return TextBoxPassword.Text; }
set { TextBoxPassword.Text = value; }
}
public void InformUserLogOnFailed()
{
MessageBox.Show("Invalid username or password.");
}
public void MoveToMainScreen()
{
// code for opening another form...
}
private Presenter presenter;
}
</code></pre>