// ctor/abstract singleton initializers // disallow explict construction of the container by non-derived classes protected MXContainer(MXApplication theApp) { _theApp = theApp; }
/// <summary> /// Sets the MonoCross application in the container. /// </summary> protected static void SetApp(MXApplication app) { Instance.App = app; Instance.App.OnAppLoad(); Instance.App.OnAppLoadComplete(); }