private async void GetWeatherForecast(object state)
        {
            this.IsRefreshing = Visibility.Visible;
            Weather           = await _wModel.GetWeatherForecast();

            this.IsRefreshing = Visibility.Collapsed;
        }