protected void RegisterTouchViewCreator(MvxMacViewsContainer container)
 {
     Mvx.RegisterSingleton<IMvxMacViewCreator>(container);
 }
Пример #2
0
 protected void RegisterMacViewCreator(MvxMacViewsContainer container)
 {
     Mvx.RegisterSingleton<IMvxMacViewCreator>(container);
     Mvx.RegisterSingleton<IMvxCurrentRequest>(container);
 }
        protected sealed override MvxViewsContainer CreateViewsContainer()
        {
			var container = new MvxMacViewsContainer();
            RegisterTouchViewCreator(container);            
            return container;
        }