标签: wpf xaml resources
如何从Viewmodel类访问app.xaml中资源中定义的对象?
答案 0 :(得分:0)
您可以访问以下资源:
var resource = App.Current.Resources["resourceKey"];
但我建议不要在ViewModel类中这样做,因为这不是MVVM的建议。您不应该从ViewModel访问任何UI组件。