示例#1
0
 public AppShellViewDispatcher(IMvxWindowsViewPresenter presenter, AppShell rootFrame)
     : base(rootFrame.Dispatcher)
 {
     _presenter = presenter;
 }
 public MvxWindowsViewDispatcher(IMvxWindowsViewPresenter presenter, IMvxWindowsFrame?rootFrame)
     : base(rootFrame?.UnderlyingControl.Dispatcher)
 {
     _presenter = presenter;
 }
 public MvxWindowsViewDispatcher(IMvxWindowsViewPresenter presenter, IMvxWindowsFrame rootFrame)
     : base(rootFrame.UnderlyingControl.Dispatcher)
 {
     this._presenter = presenter;
 }