Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1]
1  PureMVC Manifold / Standard Version / Re: PureMVCMinimalisticFormsExample on: October 21, 2008, 12:00:14
Hello Martin,

Thank you for the Minimalistic Forms Example.  I found one particular problem with the current example.

It appears the ApplicationController is never registered with the Facade.

If you add the following code to the initilizeFacade() method in the ApplicationFacade class, then all is good.   8)

:
26     protected override void initializeFacade()
27     {
28         base.initializeFacade();
29         registerCommand(ApplicationController.STARTUP, typeof(ApplicationController)); // <-- New Line
30      }
Pages: [1]