Design
eba.txt
Associated article: Event-Based Architectures
Tags: Design
Published source code accompanying the article by Ted Faison in which he discusses Event-Based Architectures which simplify system design, development, and testing because they minimize relationships between system parts.
Event-Based Architectures
by Ted Faison
Listing One
public static void Build()
{
formMain = new FormMain();
formMenuToolBar = new FormMenuToolBar();
statusBar = new StatusBar();
directoryTree = new DirectoryTree();
directoryContent = new DirectoryContent();
// populate the left and right panes of FormMain
formMain.LeftPane = directoryTree;
formMain.RightPane = directoryContent;
// ...


