views:

14

answers:

1

Hi Everyone,

I am designing a tool application that requires different windows passing objects not just messages at run time. I am also new to design patterns. However, since this application is not designed for network problems I was wondering if there are/is any design patterns such as router pattern for making this communications.

Regards,

A: 

Have a look at MVC and Observer design pattern. Both this patterns can help with the communication between the windows. They use a event notification mechanism to send messages(or objects) to all the listeners that are registered with the observable object.

walters