4

我正在编写一个类,它将 HTML 文档转换为可与 Windows 8 应用程序中的 RichTextBlock 一起使用的 Paragrpahs 列表。我希望能够为类提供在 XAML 中定义的样式列表,并且该类将从样式中读取有用的属性并应用它们。

如果我有 Windows.UI.XAML.Stylestyle我如何从中读取属性?我试过

var fontWeight = style.GetValue(TextElement.FontWeightProperty)

对于style在 XAML 中定义的 TargetProperty="TextBlock" 但这会失败并出现异常

4

1 回答 1

2

你可以试试这个:

var fontWeightSetter =
    style.Setters.Cast<Setter>().FirstOrDefault(
        setter => setter.Property == TextElement.FontWeightProperty);

var fontWeight =
    fontWeightSetter != null ?
        (FontWeight)fontWeightSetter.Value :
        FontWeights.Normal;

或检查是否有效:

public static class StyleExtensions
{
    // Untested
    public static object GetPropertyValue(this Style style, DependencyProperty property)
    {
        var setter =
            style.Setters.Cast<Setter>().FirstOrDefault(
                s => s.Property == property);
        var value = setter != null ? setter.Value : null;

        if (setter == null &&
            style.BasedOn != null)
        {
            value = style.BasedOn.GetPropertyValue(property);
        }

        return value;
    }
}
于 2012-10-26T16:58:00.813 回答