C# 动态加载资源

在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.Current.Resources.MergedDictionaries.Add(resourceDictionary);

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

通过绝对路径引用

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

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

 

posted @ 2019-09-11 18:12  唐宋元明清2188  阅读(1125)  评论(0编辑  收藏  举报