我是Windows应用开发的新手。我正在尝试使用x64平台在本地计算机上执行解决方案。但每当我执行Buttom_Click事件时,我都会遇到此异常
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
};
#endif
App.g.i.cs文件中的。
当调试器遇到变量' icon'以下
private async void Button_Click(object sender, RoutedEventArgs e)
{
RootObject myWeather =
await OpenWeatherMapProxy.GetWeather(20.0,30.0);
string icon = String.Format("ms-appx:///Assets/Weather/{0}.png", myWeather.weather[0].icon);
ResultImage.Source = new BitmapImage(new Uri(icon, UriKind.Absolute));
ResultTextBlock.Text = myWeather.name + " - " + ((int)myWeather.main.temp).ToString() + " - " + myWeather.weather[0].description;
}
如果有人能解释如何摆脱这个异常以及什么是App.g.i.cs文件,那将会很有帮助。
答案 0 :(得分:2)
App.g.i.cs
是一个自动生成的文件,因为您没有在代码中正确处理异常,所以它会在该位置中断。
private async void Button_Click(object sender, RoutedEventArgs e)
{
try{
RootObject myWeather =
await OpenWeatherMapProxy.GetWeather(20.0,30.0);
string icon = String.Format("ms-appx:///Assets/Weather/{0}.png", myWeather.weather[0].icon);
ResultImage.Source = new BitmapImage(new Uri(icon, UriKind.Absolute));
ResultTextBlock.Text = myWeather.name + " - " + ((int)myWeather.main.temp).ToString() + " - " + myWeather.weather[0].description;
}
catch(Exception ex)
{
Debug.WriteLine(ex.Message);
Debug.WriteLine(ex.StackTrace);
}
}
在应用程序运行时转到“输出”窗口并查看异常详细信息,您可能会找到答案。
最常见的异常是myWeather
或myWeather.weather[0]
为空,因为OpenWeatherMapProxy.GetWeather
无法获取数据。