Ejemplo n.º 1
0
 private void AddNewCity(object arg)
 {
     if (string.IsNullOrEmpty(_cityName) || _cities.FirstOrDefault((string city)
                                                                   =>
                                                                   { return(string.Equals(city, _cityName, System.StringComparison.OrdinalIgnoreCase)); }) != null)
     {
         return;
     }
     try
     {
         _client.DownloadString(CurrentWeatherUrl.Replace("@LOC@", _cityName));
     }
     catch
     {
         return;
     }
     _cities.Add(_cityName);
 }
Ejemplo n.º 2
0
 public void ListBoxSelectionChanged(object arg)
 {
     if (_selectedCity != null)
     {
         _displayedPage             = new View.CurrentWeatherPage();
         _displayedPage.DataContext = new CurrentWeatherPageViewModel(GetXmlDocument(CurrentWeatherUrl
                                                                                     .Replace("@LOC@", _selectedCity)));
         Utils.Navigator.NavigationService.Navigate(_displayedPage);
     }
 }