为什么InitializeComponent方法会抛出错误?

时间:2012-10-10 10:32:37

标签: xaml windows-8 microsoft-metro windows-runtime

我在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

如何避免此错误?

1 个答案:

答案 0 :(得分:1)

我认为问题在于xaml,你没有在名为“SubtitleTextStyle”的资源中使用样式。您可能需要检查它或删除xaml中的那一行。