Thread: Model View Control (MVC)

  1. #1
    Registered User
    Join Date
    Feb 2002
    Posts
    37

    Model View Control (MVC)

    Is there a book or a website that goes in detail about MVC. I have only seen very brief introduction to MVC and now would I like to know more about it.

  2. #2
    Unregistered User
    Join Date
    Sep 2005
    Location
    Antarctica
    Posts
    341
    There is info all over the net on MVC patterns. One thing to remember is that the MVC pattern commonly used in J2EE is not the same as the MVC pattern commonly used in GUI applications. Just search for MVC patterns on google.

  3. #3
    Registered User
    Join Date
    Aug 2003
    Posts
    470
    Is there a book or a website that goes in detail about MVC. I have only seen very brief introduction to MVC and now would I like to know more about it.
    Design pattern books will go into some detail. The smalltalk description of MVC is out on the Web, too. But briefly, though, you set up the structure of the classes so that the controller listens for the model to change and when the model changes the controller tells the the control to update its screen real estate. The controller also listens for the view to change and so when the view changes, the controller will sometimes need to change the model.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Spy++ view messages posted/sent to a control, or from it?
    By hanhao in forum Windows Programming
    Replies: 2
    Last Post: 06-24-2007, 11:07 PM
  2. Button handler
    By Nephiroth in forum Windows Programming
    Replies: 8
    Last Post: 03-12-2006, 06:23 AM
  3. Tree View Control flickering
    By cfriend in forum Windows Programming
    Replies: 1
    Last Post: 09-13-2004, 09:25 AM
  4. Tree View control not appearing
    By Garfield in forum Windows Programming
    Replies: 1
    Last Post: 03-07-2004, 01:47 PM
  5. Tab Controls - API
    By -KEN- in forum Windows Programming
    Replies: 7
    Last Post: 06-02-2002, 09:44 AM