2

不确定这是否可行,但如果我有一个模板对象(传递给 OnApplyTemplate 覆盖),有什么方法可以检查构成它的 XAML 的字符串表示形式吗?我在内部知道模板的 XAML 何时被编译,它实际上已转换为 BAML,并且我知道当代码到达覆盖时,它都不是,因为它已经重新水合为实际对象,这就是我问的原因。

实际上,如果您可以从模板对象转到 XAML,那么理论上您不能从任何 WPF 对象转到它的 XAML 表示吗?不过,我会满足于模板的前者。

这是 .NET 4.0 中的 C#,而不是 Silverlight FWIW。

4

1 回答 1

8

旧的 XamlWriter 类大部分时间都有效。System.Xaml 中的新 XAML 类在尝试将 ControlTemplate 序列化为 XAML 时由于某种原因引发错误。我建议您避免在生产代码中依赖任何 XAML 编写...

var template = this.FindResource("MyTemplate") as ControlTemplate;

// The new XamlServices class throws an error. 
//string xaml = System.Xaml.XamlServices.Save(template);

// The old XamlWriter from the Markup namespace works (usually)
string xaml = System.Windows.Markup.XamlWriter.Save(template);

// Format the XAML so that it's readable.
string indentedXaml = XElement.Parse(xaml).ToString();

Console.WriteLine(indentedXaml);
于 2011-04-15T04:18:45.397 回答