예제 #1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            Window = new UIWindow(UIScreen.MainScreen.Bounds);

            container = new ContainerController();
            nav       = new UINavigationController(container);

            Window.RootViewController = nav;
            Window.MakeKeyAndVisible();

            return(true);
        }
예제 #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            Window = new UIWindow(UIScreen.MainScreen.Bounds);

            container = new ContainerController();
            nav = new UINavigationController(container);

            Window.RootViewController = nav;
            Window.MakeKeyAndVisible();

            return true;
        }
예제 #3
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // create a new window instance based on the screen size
            window = new UIWindow(UIScreen.MainScreen.Bounds);

            container = new ContainerController();
            nav       = new UINavigationController(container);

            pickAColorBtn                  = UIButton.FromType(UIButtonType.RoundedRect);
            pickAColorBtn.Frame            = new CoreGraphics.CGRect(UIScreen.MainScreen.Bounds.Width / 2 - 50, UIScreen.MainScreen.Bounds.Height / 2 - 22, 100, 44);
            pickAColorBtn.AutoresizingMask = UIViewAutoresizing.FlexibleMargins;
            pickAColorBtn.SetTitle("Pick a color!", UIControlState.Normal);
            pickAColorBtn.TouchUpInside += pickAColorBtn_HandleTouchUpInside;
            container.View.AddSubview(pickAColorBtn);

            window.RootViewController = nav;

            // make the window visible
            window.MakeKeyAndVisible();

            return(true);
        }
예제 #4
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // create a new window instance based on the screen size
            window = new UIWindow (UIScreen.MainScreen.Bounds);

            container = new ContainerController();
            nav = new UINavigationController(container);

            pickAColorBtn = UIButton.FromType(UIButtonType.RoundedRect);
            pickAColorBtn.Frame = new System.Drawing.RectangleF(UIScreen.MainScreen.Bounds.Width/2 - 50,UIScreen.MainScreen.Bounds.Height/2 - 22,100,44);
            pickAColorBtn.AutoresizingMask = UIViewAutoresizing.FlexibleMargins;
            pickAColorBtn.SetTitle("Pick a color!",UIControlState.Normal);
            pickAColorBtn.TouchUpInside += pickAColorBtn_HandleTouchUpInside;
            container.View.AddSubview(pickAColorBtn);

            window.RootViewController = nav;

            // make the window visible
            window.MakeKeyAndVisible ();

            return true;
        }