Top "Mvp" questions

Model View Presenter (MVP) is a derivative of the model-view-controller software pattern, used mostly for building user interfaces.

What are the differences between Presenter, Presentation Model, ViewModel and Controller?

I have a pretty good idea how each of these patterns work and know about some of the minor differences …

model-view-controller design-patterns mvvm mvp presentation-model
What to use? MVC, MVP or MVVM or…?

I will start a Java project to develop a desktop application. What to use as presentation layer pattern (MVC, MVP,…

java model-view-controller mvvm mvp
InvalidCastException for two Objects of the same type

I have this weird problem that I cannot handle myself. A class in the model of my mvp-project designed as …

c# exception user-controls assemblies mvp
MVP pattern with Javascript framework?

Has anyone been able to implement the MVP model with any javascript frameworks? I'm having trouble figuring out how to …

javascript mvp
C# WinForms Model-View-Presenter (Passive View)

I'm developing a WinForms application in C#. I have limited experience in GUI programming, and I am having to learn …

c# design-patterns mvp passive-view
in MVC/MVP/MVPC where do you put your business logic?

in the MVC/MVP/MVPC design pattern where do you put your business logic? No, I do not mean the …

model-view-controller mvp puremvc
MVC / MVP / MVVM What the Heck?

I recently worked on a .Net WPF project to build a retail point of sale system where I used the …

wpf model-view-controller design-patterns mvvm mvp
How to bind a collection of objects to a DataGridView in Winforms

If i have two objects, namely Fruit' andColor` and their definitions are as follows: public class Fruit { public int FruitId { …

c# winforms mvp architectural-patterns
Need Context in Model in MVP

I need to use the Context of activity in the model while using MVP in android to get the list …

android mvp
MVP for Activity with multiple Fragments

I have an Activity with two Fragments in it. The activity (MainActivity) retrieves data from an open weather api. I …

android android-fragments interface mvp