Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do you know an MVC framework for Win32 Delphi applications? [closed]

As far as I know, there isn't.

Do you know any?

like image 337
eKek0 Avatar asked Apr 30 '09 23:04

eKek0


2 Answers

Do you really need a framework? MVC is just a pattern. You can look it up and implement it directly. I would suggest however that you implement MVP instead of MVC. MVP is a more modern variation of MVC that fits in better with environments such as Windows where the View does user input and output. (Unlike in MVC where the View only does output, and the Controller only does input.)

like image 164
dan-gph Avatar answered Oct 18 '22 16:10

dan-gph


Look at this implementation.

like image 40
Srikar Doddi Avatar answered Oct 18 '22 16:10

Srikar Doddi