Ejemplo n.º 1
0
        protected virtual void RegisterCore()
        {
            var binder = new MvxFromTextBinder();

            Mvx.RegisterSingleton <IMvxBinder>(binder);
        }
Ejemplo n.º 2
0
        protected virtual void RegisterBindingDescriptionParser()
        {
            var parser = CreateBindingDescriptionParser();

            Mvx.RegisterSingleton(parser);
        }
Ejemplo n.º 3
0
 protected virtual void RegisterExpressionParser()
 {
     Mvx.RegisterSingleton <IMvxPropertyExpressionParser>(new MvxPropertyExpressionParser());
 }
Ejemplo n.º 4
0
 public App()
 {
     Mvx.RegisterType <IAuthenticateService, AuthenticateService>();
     Mvx.RegisterSingleton <IMvxAppStart>(new MvxAppStart <LogInPageViewModel>());
 }
Ejemplo n.º 5
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMvxNativeColor>(new MvxStoreColor());
 }
 protected void RegisterAppStart <TViewModel>()
     where TViewModel : IMvxViewModel
 {
     Mvx.RegisterSingleton <IMvxAppStart>(new MvxAppStart <TViewModel>());
 }
Ejemplo n.º 7
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMobileCenter>(new Services.MobileCenter());
 }
Ejemplo n.º 8
0
 public void Load()
 {
     Mvx.RegisterSingleton <IDiskInfoPlugin>(new DiskInfoPlugin());
 }
Ejemplo n.º 9
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMvxProtectedData>(new MvxStoreProtectedData());
 }
Ejemplo n.º 10
0
 public void Load()
 {
     Mvx.RegisterSingleton <ICryptoTools>(new PlatformCryptoTools());
 }
Ejemplo n.º 11
0
 public override Type GetViewModelToTry()
 {
     Mvx.RegisterSingleton <GameCreation.GameCreationBundle>(new SoloBundle());
     return(typeof(GameCreationViewModel));
 }
Ejemplo n.º 12
0
 protected override void InitializeLastChance()
 {
     Mvx.RegisterSingleton <IAsyncStorageService>(new DroidAsyncStorageService());
     base.InitializeLastChance();
 }
Ejemplo n.º 13
0
 protected override IMvxApplication CreateApp()
 {
     Mvx.RegisterSingleton <IUserInfo>(new UserInfo(this.ApplicationContext));
     return(new Core.App());
 }
Ejemplo n.º 14
0
        public void Load()
        {
            Mvx.RegisterSingleton <IGeofencingService>(() => new GeofencingService());

            Mvx.Resolve <IGeofencingService>().Start();
        }
Ejemplo n.º 15
0
        protected virtual void InitializeSavedStateConverter()
        {
            var converter = CreateSavedStateConverter();

            Mvx.RegisterSingleton(converter);
        }
Ejemplo n.º 16
0
 protected override void InitializeLastChance()
 {
     Mvx.RegisterSingleton <IPlateformService>(new PlateformService());
     Mvx.RegisterSingleton <ICalendarService>(new CalendarService());
     base.InitializeLastChance();
 }
Ejemplo n.º 17
0
 public void Load()
 {
     Mvx.RegisterSingleton <ISettings>(new MvxWindowsStoreSettings());
 }
Ejemplo n.º 18
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMvxNativeColor>(new MvxAndroidColor());
     Mvx.CallbackWhenRegistered <IMvxTargetBindingFactoryRegistry>(RegisterDefaultBindings);
 }
 protected void RegisterAppStart(IMvxAppStart appStart)
 {
     Mvx.RegisterSingleton(appStart);
 }
Ejemplo n.º 20
0
        protected override void InitializeLastChance()
        {
            base.InitializeLastChance();

            Mvx.RegisterSingleton <IUserNotificationService>(new UwpUserNotificationService());
        }
Ejemplo n.º 21
0
        protected override void InitializeLastChance()
        {
            base.InitializeLastChance();

            Mvx.RegisterSingleton <IApplicationVersionService>(new ApplicationVersionService());
        }
Ejemplo n.º 22
0
        protected override void InitializeFirstChance()
        {
            base.InitializeFirstChance();

            Mvx.RegisterSingleton <Core.Services.ILocalizeService>(new Services.LocalizeService());
        }
Ejemplo n.º 23
0
 public void Load()
 {
     Mvx.RegisterSingleton <IFileSystem>(new FileSystemImpl());
     Mvx.RegisterSingleton <IFileViewer>(new FileViewerImpl());
 }
Ejemplo n.º 24
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMvxThreadSleep>(new MvxThreadSleep());
 }
Ejemplo n.º 25
0
 public override void Initialize()
 {
     Mvx.RegisterSingleton <INotificationsSubscriber>(new NotificationsSubscriber());
 }
Ejemplo n.º 26
0
 public void Load()
 {
     Mvx.RegisterSingleton <IMvxNativeColor>(new MvxAndroidColor());
     RegisterDefaultBindings();
 }
Ejemplo n.º 27
0
        protected virtual void RegisterSourcePropertyPathParser()
        {
            var tokeniser = this.CreateSourcePropertyPathParser();

            Mvx.RegisterSingleton <IMvxSourcePropertyPathParser>(tokeniser);
        }
Ejemplo n.º 28
0
 protected override void InitializeIoC()
 {
     base.InitializeIoC();
     Mvx.RegisterSingleton <IDialogService>(() => new DialogService());
 }
Ejemplo n.º 29
0
		public void Load()
		{
			Mvx.RegisterSingleton<IMvxLocationWatcher>(() => new MvxAndroidFusedLocationWatcher());
		}
Ejemplo n.º 30
0
        protected override void InitializeIoC()
        {
            base.InitializeIoC();

            Mvx.RegisterSingleton(() => UserDialogs.Instance);
        }