コード例 #1
0
ファイル: MvxBaseTouchSetup.cs プロジェクト: JoanMiro/MvxMod
 protected override sealed MvxViewsContainer CreateViewsContainer()
 {
     var container = new MvxTouchViewsContainer();
     RegisterTouchViewCreator(container);
     return container;
 }
コード例 #2
0
ファイル: MvxBaseTouchSetup.cs プロジェクト: JoanMiro/MvxMod
 protected void RegisterTouchViewCreator(MvxTouchViewsContainer container)
 {
     this.RegisterServiceInstance<IMvxTouchViewCreator>(container);
 }
コード例 #3
0
 protected virtual void RegisterTouchViewCreator(MvxTouchViewsContainer container)
 {
     Mvx.RegisterSingleton<IMvxTouchViewCreator>(container);
     Mvx.RegisterSingleton<IMvxCurrentRequest>(container);
 }