Inheritance: MonoMobile.Forms.FormDialogViewController
Exemplo n.º 1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            CustomElements.RegisterAll();

            InvokeOnMainThread(() => {
                var sampleForm = new SampleFormController();
                var navigation = new UINavigationController(sampleForm);
                window.AddSubview(navigation.View);
                window.MakeKeyAndVisible();
            });
            return(true);
        }
Exemplo n.º 2
0
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			CustomElements.RegisterAll();
			
			InvokeOnMainThread(()=>{
				
				var sampleForm = new SampleFormController();
				var navigation = new UINavigationController(sampleForm);
				window.AddSubview(navigation.View);
				window.MakeKeyAndVisible ();
			
			});
			return true;
		}