vote up 0 vote down star

Hi,

I have a MVP Gui and now I would like to define certain Actions or Commands (Modify, Save, Close, ...) for certain views.

Is there an easy way to do this? Should I provide Commands for each View?

flag

MVP sounds like you are using WPF? Have you examined WPF's Commanding architecture yet? – Josh G Apr 17 at 12:25
No, I'm doing a MVP implementation in Winforms – Bertvan Apr 17 at 12:26

1 Answer

vote up 1 vote down check

The easiest way is to have a factory where all your command objects are instantiated. So if you have a open Job Command all the views would goto the factory and pull out the Open Job Command object, instantiate it, and then execute it. If you need to fix a bug or change the Open Job Command there only one spot you have to do it for all the Views.

With that being said there will be some commands that will probably be unique to each View. Despite that you may want to still encapsulate those in a command object as you can easily implement Undo/Redo with everything going through command objects.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.