Inheritance: MonoTouch.Dialog.DialogViewController
コード例 #1
0
ファイル: AppDelegate.cs プロジェクト: anujb/MultitaskingHttp
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _Window             = new UIWindow(UIScreen.MainScreen.Bounds);
            _RootViewController = new CustomerViewController();

            _Window.RootViewController = _RootViewController;
            _Window.MakeKeyAndVisible();

            HttpServer.Initialize();

            return(true);
        }
コード例 #2
0
ファイル: AppDelegate.cs プロジェクト: anujb/MultitaskingHttp
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _Window = new UIWindow(UIScreen.MainScreen.Bounds);
            _RootViewController = new CustomerViewController();

            _Window.RootViewController = _RootViewController;
            _Window.MakeKeyAndVisible();

            HttpServer.Initialize();

            return true;
        }