标签: c# windows-phone-7
我知道您可以使用以下代码访问页面资源:
btn.Style = Resources["ButtonStle"] as Style;
但是如何访问应用程序范围的资源呢?
答案 0 :(得分:23)
您可以通过静态Application.Current属性访问该应用程序。
btn.Style = Application.Current.Resources["ButtonStyle"] as Style;