design patterns

  • Thread starter Thread starter dotnetchic
  • Start date Start date
D

dotnetchic

I have a project I've been trying to define a model for. Basically, it
will be an MDI app with each document containing multiple "views" of
the same object data. I've considered several approaches, one being to
implement a custom interface for each "view" (ILayer) and having the
document control which views are displayed. Are there any other models
that are similar in architecture?

TIA
 
"dotnetchic" <[email protected]> a écrit dans le message de (e-mail address removed)...

|I have a project I've been trying to define a model for. Basically, it
| will be an MDI app with each document containing multiple "views" of
| the same object data. I've considered several approaches, one being to
| implement a custom interface for each "view" (ILayer) and having the
| document control which views are displayed. Are there any other models
| that are similar in architecture?

Look at Model View Controller, or it's big sister, Model View Presenter;
there are some articles on my website www.carterconsulting.org.uk

Joanna
 
Thanks! I had actually seen a few references to the Model View
Presenter, but they were all dead links. This is just what I was
looking for.

-SLC
 
Back
Top