5

我试图在我的资源字典中获取特定模板。这是我的资源字典

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:view="clr-namespace:Test.Layout.View"
xmlns:toolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"  
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><DataTemplate x:Key="LeftRightLayout">
    <toolkit:DockPanel>
        <view:SharedContainerView toolkit:DockPanel.Dock="Left"/>
        <view:SingleContainerView toolkit:DockPanel.Dock="Right"/>
    </toolkit:DockPanel>
</DataTemplate>

但是,当它到达 XamlReader.Load

private static ResourceDictionary GetResource(string resourceName)
    {
        ResourceDictionary resource = null;

        XDocument xDoc = XDocument.Load(resourceName);
        resource = (ResourceDictionary)XamlReader.Load(xDoc.ToString(SaveOptions.None));

        return resource;
    }

找不到类型“SharedContainerView”,因为“clr-namespace:Test.Layout.View”是未知命名空间。[行:4 位置:56]

4

2 回答 2

3

您是否尝试过向 xmlns:view 添加程序集限定符?

于 2010-05-03T13:36:28.657 回答
3

您应该将程序集限定符添加到您的命名空间。例如,如果您的程序集名称是 SilverlightApplication1 您应该添加

;组装=SilverlightApplication1

到您的命名空间的末尾,如下所示:

xmlns:view="clr-namespace:Test.Layout.View;assembly=SilverlightApplication1"

于 2011-09-12T07:52:26.067 回答