在我的 Silverlight 应用程序中,我有 UserControl,我想在单独的 XAML 文件中的 ResourceDictionary 中引用 StaticResource。
我的用户控件如下所示:
<UserControl x:Class="ResourceDictionaryHeadache.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
<UserControl.Resources>
<ResourceDictionary Source="/SampleData.xaml" />
</UserControl.Resources>
<Grid x:Name="LayoutRoot">
<ListBox HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
ItemsSource="{StaticResource SampleData}">
</ListBox>
</Grid>
</UserControl>
我的 SampleData.xaml 文件如下所示:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Headache="clr-namespace:ResourceDictionaryHeadache">
<Headache:PersonList x:Key="SampleData">
<Headache:Person Name="Joe" Age="20" />
<Headache:Person Name="Sam" Age="25" />
<Headache:Person Name="Dave" Age="30" />
</Headache:PersonList>
我将 SampleData.xaml 文件设置为 Content 的构建操作,当我运行应用程序时,我的 UserControl 构造函数的 InitializeComponent() 行出现 AG_E_PARSER_BAD_TYPE [Line: 5 Position: 44] 错误。
导致此错误的原因是什么,如何正确引用此资源?
最佳答案
你的资源字典中的这一行对我来说不合适:-
xmlns:Headache="clr-namespace:ResourceDictionaryHeadache"
您的
PersonList
类是否真的定义在名为 ResourceDictionaryHeadache
的命名空间中?不管是不是我怀疑代码失败的原因是因为 XAML 找不到
PersonList
类型。编辑
哦!我刚刚注意到,从
Source
中删除前面的/并将 SampleData.xaml 资源字典保留在其默认的“页面”构建操作中。换句话说,如果您只是使用“添加新项目”然后“资源字典”添加了 XAML 文件,则您只需要在页面 xaml 中使用它:-
<UserControl.Resources>
<ResourceDictionary Source="SampleData.xaml" />
</UserControl.Resources>
关于silverlight - 在 Silverlight 中使用 ResourceDictionary 时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2025152/