Example #1
0
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
 }
Example #2
0
 public Setup(MvxApplicationDelegate applicationDelegate, CustomerManagementPresenter presenter)
     : base(applicationDelegate, presenter)
 {
     _presenter = presenter;
 }
Example #3
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Example #4
0
 private Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Example #5
0
 /// <summary>Initializes a new instance of the <see cref="Setup"/> class.</summary>
 /// <param name="applicationDelegate">The application delegate.</param>
 /// <param name="window">The window.</param>
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
     _applicationDelegate = applicationDelegate;
     _window = window;
 }
Example #6
0
 public StoryboardViewContainer(MvxApplicationDelegate applicationDelegate, UIWindow window)
 {
 }
Example #7
0
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : this(applicationDelegate, new TogglPresenter(applicationDelegate, window))
 {
 }
Example #8
0
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
     appDelegate = applicationDelegate;
     this.window = window;
 }
Example #9
0
 public Setup(MvxApplicationDelegate applicationDelegate, CustomerManagementPresenter presenter)
     : base(applicationDelegate, presenter)
 {
     _presenter = presenter;
 }
Example #10
0
 protected MvxTouchDialogBindingSetup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Example #11
0
 public AppSetup(MvxApplicationDelegate appDelegate, UIWindow window)
     : base(appDelegate, window)
 {
     // nothing to
 }
Example #12
0
 public ExampleSetup(MvxApplicationDelegate applicationDelegate, UIWindow window) : base(applicationDelegate, window)
 {
     _window = window;
     _applicationDelegate = applicationDelegate;
 }
Example #13
0
 public CustomBaseViewPresenter(MvxApplicationDelegate applicationDelegate, UIWindow window) : base(applicationDelegate, window)
 {
 }
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter) //, UIWindow window)
     : base(applicationDelegate, presenter)                                                 //, window)
 {
 }
Example #15
0
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
 }
Example #16
0
 public Setup(MvxApplicationDelegate del, UIWindow window) : base(del, window)
 {
 }
Example #17
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Example #18
0
 public Setup(MvxApplicationDelegate delg, MvxBaseIosViewPresenter presenter) : base(delg, presenter)
 {
 }