使用XamlReader创建的DataTemplate找不到StaticResources

本文关键字:找不到 StaticResources DataTemplate XamlReader 创建 使用 | 更新日期: 2023-09-27 18:06:26

这段代码无法正确加载,而在XAML中声明相同的DataTemplate工作得很好。

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    this.Resources.Add("a", "Hello");
    DataTemplate t = GetObject("<DataTemplate><Label Content='"{Binding Source={StaticResource a}}'"/></DataTemplate>") as DataTemplate;
    list.ItemTemplate = t;
    list.Items.Add(77);
}
public static Object GetObject(string xaml)
{
    MemoryStream sr = null;
    ParserContext pc = new ParserContext();
    sr = new MemoryStream(Encoding.ASCII.GetBytes(xaml));
    pc.XmlnsDictionary.Add("", "http://schemas.microsoft.com/winfx/2006/xaml/presentation");
    pc.XmlnsDictionary.Add("x", "http://schemas.microsoft.com/winfx/2006/xaml");
    return XamlReader.Load(sr, pc);
}

我需要在代码中这样做。如何?

使用XamlReader创建的DataTemplate找不到StaticResources

我认为StaticResource需要在加载时解决,因为它不在上下文中,它会失败。DynamicResource可以工作,因为它可以等到查询时才提供值,但DynamicResource不能用作Binding的源。

如果您的情况允许,您可以像这样将资源添加到DataTemplate

DataTemplate t = GetObject(@"
    <DataTemplate>
        <DataTemplate.Resources>
            <sys:String x:Key=""a"">Hello</sys:String>
        </DataTemplate.Resources>
        <Label Content=""{Binding Source={StaticResource a}}""/>
    </DataTemplate>") as DataTemplate;
list.ItemTemplate = t;

您还需要添加Xmlns Dictionary

pc.XmlnsDictionary.Add("sys", "clr-namespace:System;assembly=mscorlib");

我解决了这个问题:我没有使用StaticResource,而是将资源定义为属性并使用RelativeSource。