Ejemplo n.º 1
0
        /*
         * protected override void OnNavigatedTo(NavigationEventArgs e)
         * {
         *  //if (!App.MaingMainPageViewModel.IsDataLoaded)
         *  //{
         *  //    App.MaingMainPageViewModel.LoadData();
         *  //}
         * }*/

        private void HandlePropertyTap(object sender, GestureEventArgs e)
        {
            var item = ((Grid)sender).DataContext as PropertyViewModel;

            if (item != null)
            {
                NavigationUtils.NavigateToPropertyDetailsPage(NavigationService, item.ID);
            }
        }
Ejemplo n.º 2
0
 private void HandleAddClick(object sender, EventArgs e)
 {
     NavigationUtils.NavigateToPropertyDetailsPage(NavigationService);
 }