public App() { InitializeComponent(); MainPage = new WeatherView(); }
public WeatherModel(WeatherView v) { view = v; weatherData = new List <Weather>(); foreach (var e in Properties.Settings.Default.Cities) { AddCity(e); } }