5

考虑我的 UserControl 中的以下 XAML:

<TextBlock Text="HelloWorld" Loaded="TextBlock_OnLoaded" />

以及相关的事件处理程序:

private void TextBlock_OnLoaded(object sender, RoutedEventArgs e)
{
    var xaml = XamlWriter.Save(sender);
    Console.WriteLine(xaml);
}

加载 TextBlock 时,会将以下输出写入控制台:

<TextBlock Text="HelloWorld" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />

现在考虑这个替代 XAML:

<ListBox ItemsSource="{Binding SomeCollection}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="HelloWorld" Loaded="TextBlock_OnLoaded" />
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

现在,当加载 TextBlock 时,以下输出将写入控制台:

<TextBlock xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
<TextBlock xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
<TextBlock xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
......

请注意,TextProperty 不再被序列化。

如果在调用 XamlWriter.Save() 之前添加了以下 TextProperty 分配:

private void TextBlock_OnLoaded(object sender, RoutedEventArgs e)
{
    var textBlock = sender as TextBlock;
    if (textBlock != null)
    {
        textBlock.Text = textBlock.Text;
    }

    var xaml = XamlWriter.Save(sender);
    Console.WriteLine(xaml);
}

然后在加载 TextBlock 时,将以下输出写入控制台:

<TextBlock Text="HelloWorld" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
<TextBlock Text="HelloWorld" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
<TextBlock Text="HelloWorld" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" />
......

请注意,TextProperty 再次被序列化。

这篇博客文章解释说“......如果属性由 DependencyProperty 支持......只有在实际设置时才写入该属性。”

似乎在第一个用法示例中确实设置了 TextProperty,但在 ListBox 和 DataTemplate 的第二个用法示例中没有设置。

谁能解释为什么会这样,以及如何克服这个障碍?

我最好的猜测是 XAML 解析器以某种方式在内部设置 TextBlock 状态,而不是在依赖属性上调用 SetValue,但我不确定它为什么只对 DataTemplate 中的元素执行此操作。

4

2 回答 2

2

XamlWriter.Save似乎只序列化本地设置的值。在 XAML 中,值可以来自多个级别的源

直接设置时TextBlock.Text,您正在查看“本地值”集(优先级 3)。但是,当您在数据模板中设置它时,您正在设置模板属性(优先级 4)。通过写作

textBlock.Text = textBlock.Text;

您实际上是将其转换为本地属性集(优先级 3)!

如果您查看XamlWriter.Save 中涉及的一些源代码,您可以看到(第 819 行)它显式读取属性的本地值。

不幸的是,我不确定对此有什么好的解决方法。XamlWriter 有已知的限制。你尝试继承XamlDesignerSerializationManager并调用XamlWriter.Save(Object, XamlDesignerSerializationManager)重载,但它看起来不太有希望。更有可能的是,您将不得不执行上述操作,或者编写自己的序列化例程(至少 Microsoft 已将其源代码作为指南提供)。

于 2015-02-17T00:02:33.220 回答
1

根据NextInLine的回答,我想出了以下解决方法:

public static IEnumerable<DependencyProperty> GetDependencyProperties(this DependencyObject obj)
{
    var propertyDescriptors = TypeDescriptor.GetProperties(obj, new Attribute[]
    {
        new PropertyFilterAttribute(PropertyFilterOptions.All)
    });

    return (from PropertyDescriptor pd in propertyDescriptors
            let dpd = DependencyPropertyDescriptor.FromProperty(pd)
            where dpd != null
            select dpd.DependencyProperty).ToList();
}

public static IEnumerable<DependencyProperty> GetUpdatedDependencyProperties(this DependencyObject obj)
{
    return (from property in obj.GetDependencyProperties().Where(x => !x.ReadOnly)
            let metaData = property.GetMetadata(obj.GetType())
            let defaultValue = metaData.DefaultValue
            let currentValue = obj.GetValue(property)
            where currentValue != defaultValue
            select property).ToList();
}

可以这样使用:

foreach (var updatedProperty in dependencyObject.GetUpdatedDependencyProperties())
{
    dependencyObject.SetValue(updatedProperty, dependencyObject.GetValue(updatedProperty));
}

这将强制XamlWriter.Save(dependencyObject)序列化dependencyObject在 XAML 中更新的所有属性。

于 2015-02-17T23:51:16.033 回答