public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { // Override point for customization after application launch. // If not required for your application you can safely delete this method // Setup locale Vm.InitLocale(); Instance = this; Window = new UIWindow(UIScreen.MainScreen.Bounds); Window.RootViewController = new TransparentNavigationController(new MainViewController()); Window.MakeKeyAndVisible(); return(true); }