我在VS2012中创建了一个新的SplitPage,并在此页面加载:
this.Frame.Navigate(typeof(SplitPage), "AllGroups");
发出错误:
this.InitializeComponent();
Visual Studio向我展示了这个例外:
An exception of type 'Windows.UI.Xaml.Markup.XamlParseException' occurred
in IC2.exe but was not handled in user code
WinRT information: Cannot find a Resource with the Name/Key SubtitleTextStyle
[Line: 88 Position: 104]
如果我发现错误,我发现了消息:
Unspecified error
如何避免此错误?
答案 0 :(得分:1)
我认为问题在于xaml,你没有在名为“SubtitleTextStyle”的资源中使用样式。您可能需要检查它或删除xaml中的那一行。