<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<sys:String x:Key="one">ONE</sys:String>
<sys:String x:Key="two">TWO</sys:String>
<sys:String x:Key="three">THREE</sys:String>
</ResourceDictionary>
现在想要使用C#在WPF中通过代码隐藏动态创建资源ResourceDictionary。有可能创建吗?
答案 0 :(得分:3)
public MainWindow()
{
InitializeComponent();
DataContext = new MainViewModel();
ResourceDictionary rd = new ResourceDictionary();
rd.Add("one", "ONE");
rd.Add("two", "TWO");
rd.Add("three", "THREE");
this.Resources.MergedDictionaries.Add(rd);
}
我希望这会有所帮助。
答案 1 :(得分:0)
您是否看过ResourceDictionary.Add方法 - http://msdn.microsoft.com/en-us/library/ms521848.aspx?