WPF 后台读取样式文件

ResourceDictionary dic = new ResourceDictionary { Source = new Uri("Styles.xaml",UriKind.Relative) };
Style style = (Style)dic["TextBlockStyle"];
ResourceDictionary dic0 = (ResourceDictionary)System.Windows.Application.LoadComponent(new Uri("Styles.xaml", UriKind.RelativeOrAbsolute));
Style style0 = (Style)dic0["TextBlockStyle"];
原文地址:https://www.cnblogs.com/ZXdeveloper/p/4707262.html