Exemplo n.º 1
0
 private void PlacesLVLoaded(object sender, RoutedEventArgs e)
 {
     try
     {
         AddLocationVM.SetPlaceScrollViewer(PlacesLV);
     }
     catch { }
 }
Exemplo n.º 2
0
 void DoSearch()
 {
     if (string.IsNullOrEmpty(SearchText.Text))
     {
         SearchText.Focus(FocusState.Keyboard);
         return;
     }
     AddLocationVM.SearchPlaces(SearchText.Text);
 }