StartApplication() private method

private StartApplication ( ) : void
return void
        public static void Initialize(MXApplication theApp, UIApplicationDelegate appDelegate, UIWindow window)
        {
            // initialize the application and hold a reference for a bit
            MXTouchContainer thisContainer = new MXTouchContainer(theApp, appDelegate, window);
            MXContainer.InitializeContainer(thisContainer);

            thisContainer.StartApplication();
        }
Beispiel #2
0
        public static void Initialize(MXApplication theApp, UIApplicationDelegate appDelegate, UIWindow window)
        {
            // initialize the application and hold a reference for a bit
            MXTouchContainer thisContainer = new MXTouchContainer(theApp, appDelegate, window);

            MXContainer.InitializeContainer(thisContainer);

            thisContainer.StartApplication();
        }
		protected static void Initialize(MXTouchContainer container)
		{
			MXContainer.InitializeContainer(container);
			container.StartApplication();
		}
Beispiel #4
0
 protected static void Initialize(MXTouchContainer container)
 {
     MXContainer.InitializeContainer(container);
     container.StartApplication();
 }