WP7 - StaticResource错误?

时间:2011-01-31 02:41:57

标签: windows-phone-7

这条线似乎在:

之内
<TextBlock x:Name="ItemReason" Text="{Binding Reason}" Style="{StaticResource PhoneFontSizeLarge}" />

此处触发错误:

private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)

我不确定为什么。有什么想法吗?

1 个答案:

答案 0 :(得分:3)

您没有定义控件样式,而是定义字体大小。

FontSize="{StaticResource PhoneFontSizeLarge}

这是正确的。

供将来参考,请随时保留this