Click here to Skip to main content
15,900,973 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

While developing any desktop application which has several dialogs what one shd consider whether to go for Dialog based app or view based (MVC). What are the benifits of using each one.

Regds
SNI
Posted
Comments
Richard MacCutchan 23-Aug-13 7:25am    
It is impossible to answer this question as it all depends on your requirements. Dialog based applications tend to be short running, and have limited user interaction. View based would last longer and have more interaction with the user.

1 solution

View based apps have an application/document/view architecture set up for you by Microsoft, which is similar to the "Model View Controller"/MVC on other Microsoft feature stacks.

A dialog based app gives you a dialog where you interact with a number of controls. This is typically done if you have an app where you just want to activate an HI and have the user change some settings and quit. If you want to add any MVC features to the dialog app, you get to be a better programmer because you have to add them yourself.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900