When to use MVP in Windows Forms .net application?
Posted
by Janalopa
on Stack Overflow
See other posts from Stack Overflow
or by Janalopa
Published on 2009-08-31T22:12:36Z
Indexed on
2010/05/04
1:28 UTC
Read the original article
Hit count: 365
I am familiar with MVC/MVP though my question is simple, I'm about to program a simple Instant Messaging software when the engine and communication part is an open API. so my software will have about 3 forms, a splash screen with login details, the options form and a main form with all the functionality like: Friends List, Send message, Received messages (tabbed), search user, etc.
In UI perspective, its important for the GUI to be in 1 form in my application.
So my question is, for the only complicated form that I'm going to have, is it necessary to implement an MVP design pattern or in this case its better to just go straight forward and put all the logic in 1 place?
THANKS
Janalopa!
© Stack Overflow or respective owner