3
<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 。可以这样创建吗?

4

2 回答 2

4
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);
    }

我希望这将有所帮助。

于 2013-03-03T05:30:15.883 回答
0

您是否看过 ResourceDictionary.Add 方法 - http://msdn.microsoft.com/en-us/library/ms521848.aspx

于 2013-03-03T04:59:43.880 回答