如何访问代码中的应用程序资源,c#,wp7

时间:2011-05-17 00:15:28

标签: c# windows-phone-7

我知道您可以使用以下代码访问页面资源:

btn.Style = Resources["ButtonStle"] as Style;

但是如何访问应用程序范围的资源呢?

1 个答案:

答案 0 :(得分:23)

您可以通过静态Application.Current属性访问该应用程序。

btn.Style = Application.Current.Resources["ButtonStyle"] as Style;