Provides access to platform specific functionality for the current client platform.
Inheritance: IPlatform
Exemplo n.º 1
0
        protected override void OnStart()
        {
            var platform = new Microsoft.WindowsAzure.MobileServices.CurrentPlatform();

            Console.WriteLine(platform);
            base.OnStart();
        }
        public override void OnCreate()
        {
            base.OnCreate();
            var platform = new Microsoft.WindowsAzure.MobileServices.CurrentPlatform();

            System.Diagnostics.Debug.WriteLine(platform);
            CurrentPlatform.Init();
            ServiceRegistrar.Startup();
        }
        //
        // 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)
        {
            var platform = new Microsoft.WindowsAzure.MobileServices.CurrentPlatform();

            System.Diagnostics.Debug.WriteLine(platform);
            // create a new window instance based on the screen size
            ServiceRegistrar.Startup();

            UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes
            {
                TextColor = UIColor.White
            });

            UINavigationBar.Appearance.TintColor    = UIColor.White;
            UINavigationBar.Appearance.BarTintColor = UIColor.FromRGB(52, 152, 219);



            return(true);
        }
Exemplo n.º 4
0
		protected override void OnStart()
		{
			var platform = new Microsoft.WindowsAzure.MobileServices.CurrentPlatform();
			Console.WriteLine(platform);
			base.OnStart ();
		}