我正在开发Windows Phone 8.1应用。我突然遇到一个问题,其中Windows Phone 8.1模拟器启动但应用程序没有启动,并且文件名为' App.g.i.cs'打开并突出显示以下代码行:
global::System.Diagnostics.Debugger.Break();
此代码包含在以下代码中:
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
};
#endif
这是在我安装Windows Phone 10 Emulator之后发生的,我尝试卸载WP 10模拟器但仍面临同样的问题。
我试图找到解决方案,但没有找到任何解决方案。我不知道我是否正确,但我所知道的是应用程序的中断与否。启用调试器时。
解决方案:
在做了一些实验之后,我发现MainPage.xaml
我已经在<TextBox>
中添加了<TextBox>
,并且在从 <TextBox.Header>
<TextBlock Text="Email" FontFamily="Comic Sans MS"/>
</TextBox.Header>
删除了以下代码后,应用程序运行正常:
static void func (){
String[] split = sss.split(",");
if (split.length < 5) {
// this means some error in the input, need to handle
}
male=split[0];
blood=split[1];
age=split[2];
nat=split[3];
dis=split[4];
}
答案 0 :(得分:1)
实际上错误很奇怪。这不应该发生。但这对我来说并不奇怪,因为与Win8控件相比,WP8中的XAML控件存在错误。
解决方法是改为使用>>>ma.reshape(mc.shape[0],-1).mean(1)
masked_array(data = [1.6666666666666667 4.0],
mask = [False False],
fill_value = 1e+20)
:
>>> ma.mean(1).mean(1)
masked_array(data = [1.5 4.0],
mask = [False False],
fill_value = 1e+20)
>>> ma.mean(2).mean(1)
masked_array(data = [2.25 4.0],
mask = [False False],
fill_value = 1e+20)