예제 #1
0
 public TestimonialPhotoPage(Models.Testimonial testimonial)
 {
     InitializeComponent();
     _model = new TestimonialPhotoViewModel(App.CurrentApp.MainPage.Navigation)
     {
         Testimonial = testimonial
     };
     Init();
 }
예제 #2
0
 public TestimonialPhotoPage(Models.Testimonial testimonial)
 {
     App.Configuration.InitialAsync(this);
     NavigationPage.SetHasNavigationBar(this, false);
     InitializeComponent();
     this._model = new TestimonialPhotoViewModel(App.CurrentApp.MainPage.Navigation)
     {
         Testimonial = testimonial
     };
     BindingContext = this._model;
 }