示例#1
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
示例#2
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
示例#3
0
 protected MvxIosDialogSetup(IMvxApplicationDelegate applicationDelegate,
                               IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
示例#4
0
 public virtual void PlatformInitialize(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     ApplicationDelegate = applicationDelegate;
     _presenter          = presenter;
 }
示例#5
0
 protected MvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     this._presenter = presenter;
     this._applicationDelegate = applicationDelegate;
 }
示例#6
0
 public MvxModalPresentationControllerDelegate(IMvxIosViewPresenter presenter, UIViewController viewController, MvxModalPresentationAttribute attribute)
 {
     _presenter      = presenter;
     _viewController = viewController;
     _attribute      = attribute;
 }
 public MvxIosViewDispatcher(IMvxIosViewPresenter presenter)
 {
     this._presenter = presenter;
 }
        public static MvxIosSetupSingleton EnsureSingletonAvailable(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
        {
            var instance = EnsureSingletonAvailable <MvxIosSetupSingleton>();

            instance.PlatformSetup <MvxIosSetup>()?.PlatformInitialize(applicationDelegate, presenter);
            return(instance);
        }
示例#9
0
文件: Setup.cs 项目: thisroof/native
 public Setup(IMvxApplicationDelegate appDelegate, IMvxIosViewPresenter presenter) : base(appDelegate, presenter)
 {
     mAppDelegate = appDelegate;
     mPresenter   = presenter;
 }
示例#10
0
 public MvxIosViewDispatcher(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
 protected NinjectMvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter) : base(applicationDelegate, presenter)
 {
 }
示例#12
0
 public MvxPopoverPresentationControllerDelegate(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
示例#13
0
 protected MvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
示例#14
0
 public MvxPopoverDelegate(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
示例#15
0
 public Setup(IMvxApplicationDelegate applicationDelegate, UIWindow window, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
示例#16
0
 protected MvxIosDialogSetup(IMvxApplicationDelegate applicationDelegate,
                             IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }