为什么我不能在XAML中定义ResourceDictionary并自己实例化它?

时间:2009-02-17 17:09:31

标签: c# .net wpf silverlight xaml

好的,这个问题很难在一行中提出来。这是交易。如果我有这个XAML:

<ResourceDictionary
  x:Class="MyAssembly.MiscResources"    
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <SolidColorBrush x:Key="MyBrush" Color="Purple" />    

</ResourceDictionary>

然后我在一些C#中有这个:

var dict = new MiscResources();

dict被创建并且似乎正常运行,但它有0个元素。并不是说这是某种必要的行为,但我完全不明白为什么它不起作用。我错过了什么?

1 个答案:

答案 0 :(得分:6)

您缺少对ResourceDictionary的部分类

中的Initializecomponent()的调用
namespace YourNameSpace
{
    public partial class someClassName: ResourceDictionary
    {
        public someClassName()
        {
            InitializeComponent(); // you need this for the LoadComponent call on the Baml..
        }
    }
}