public TabCarouselBarDelegate(TabCarouselPageRenderer pageRenderer)
 {
     if (pageRenderer == null)
     {
         throw new NullReferenceException();
     }
     PageRenderer = pageRenderer;
 }
Пример #2
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)
        {
            global::Xamarin.Forms.Forms.Init();
            TabCarouselPageRenderer.Load();
            LoadApplication(new App());


            return(base.FinishedLaunching(app, options));
        }
Пример #3
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);
            TabCarouselPageRenderer.Load();
            LoadApplication(new App());

            if (( int )Build.VERSION.SdkInt >= 21)
            {
                ActionBar.SetIcon(new ColorDrawable(Resources.GetColor(Android.Resource.Color.Transparent)));
            }
        }