Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the MVC Design Pattern / architectural pattern be used in Desktop Application Development?

I've just learned what ASP.NET MVC is and I'm wondering if the pattern is ever used in Windows Desktop application development?

I'm specifically looking at potentially trying to use it in a Desktop .NET application.

Please forgive me if this question is way out in left field in terms of how MVC is suppose to be used. I'm still trying to wrap my head around the details of it.

like image 943
Frank V Avatar asked Dec 23 '22 13:12

Frank V


2 Answers

The Model-View-Controller Pattern works like a dream with "desktop" apps, as you don't have to worry about handling state information.

like image 186
kͩeͣmͮpͥ ͩ Avatar answered Dec 28 '22 06:12

kͩeͣmͮpͥ ͩ


Most definitely. Here is a list of MVC GUI frameworks.

like image 26
Hates_ Avatar answered Dec 28 '22 06:12

Hates_