Xaml cannot create an instance of “X”
This is because instantiating ApplicationsSettings throws an exception. If you add the following to your constructor, you should be fine;
try { settings = IsolatedStorageSettings.ApplicationSettings; } catch (System.IO.IsolatedStorage.IsolatedStorageException e) { // handle exception }
这是因为有可能出现异常,需要在构造函数中作出判断,抛出异常。
作者:johnny
出处:http://www.cnblogs.com/sunjunlin
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。