标签:
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"];
标签:
原文地址:http://www.cnblogs.com/ZXdeveloper/p/4707262.html