在xaml中控件通过绑定静态资源StaticResource来获取样式Style有多种方式,TextBlockStyle.xaml是一个ResourceDictionary,包含了所需样式

通过相对路径引用

通过后台代码向当前程序的资源中动态添加,代码如下:

1     ResourceDictionary resourceDictionary = new ResourceDictionary();
2 Application.LoadComponent(resourceDictionary, new Uri("/Test.Resource;component/TextBlockStyle.xaml", UriKind.Relative));
3

Application.LoadComponent,只支持相对路径。

通过绝对路径引用

通过绝对路径,可以获取ResourceDictionary下指定Key值的资源。

1     ResourceDictionary normalVersionDict = new ResourceDictionary();
2 normalVersionDict.Source = newF:\Github-Myself\KeyBoardEventDemo\WpfApp30\TextBlockStyle.xaml");
3 var

 

作者:唐宋元明清2188

本文版权归作者所有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。