如何在代码隐藏中创建ResourceDictionary?

时间:2013-03-03 04:15:26

标签: c# wpf xaml .net-4.0 resourcedictionary

<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。有可能创建吗?

2 个答案:

答案 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