user65663
user65663

Reputation:

Good things to know when developing a GUI architecture from scratch

What are best practices, tips, and general things to keep in mind for building an OOP GUI architecture?

Upvotes: 1

Views: 559

Answers (3)

Daniele Teti
Daniele Teti

Reputation: 1774

A good knowledge of Model-GUI-Mediator and MVP pattern could be' useful too. Check www.danieleteti.it for an example about MVP (Passive View variant).

Upvotes: 2

btreat
btreat

Reputation: 1554

As a part of what user367391 mentioned, you'll want to make sure business logic is encapsulated / packaged in such a way that it can be redeployed / reused in the event that there is a need to develop new clients on different platforms.

Upvotes: 1

ali
ali

Reputation: 1496

Know the important Design Patterns, such as MVC and its constituents like Observer.

Upvotes: 5

Related Questions