public App()
        {
            InitializeComponent();



            MainPage = new WeatherView();
        }
Exemple #2
0
        public WeatherModel(WeatherView v)
        {
            view = v;

            weatherData = new List <Weather>();

            foreach (var e in Properties.Settings.Default.Cities)
            {
                AddCity(e);
            }
        }