用于TextBlock的Wpf本地化动态下标

时间:2018-01-07 10:41:13

标签: c# wpf xaml mvvm textblock

我正在使用MVVM模式将文本绑定到TextBlock。 文本在数据库中使用<Subscript>标记定义,以定义文本是否为下标。 "Some<Subscript>subscript</Subscript>text."

我尝试使用Unicode subscripts and superscripts,但字符显得太小,难以阅读。

我找不到直接的方法来做到这一点。有什么建议吗?

2 个答案:

答案 0 :(得分:1)

当您知道有订阅标记时,您可以在TextBlock中使用多个运行。

3-D

我认为您不知道下标文本的确切位置,对吧?那么,为什么不只是分析你的输入并以编程方式创建一个新的Run?具有普通文本的运行具有与具有下标文本的运行相比的另一尺寸。

如果您需要以编程方式添加运行的帮助,请查看此StackOverflow帖子: How to assign a Run to a text property, programmatically?

我知道这不是MVVM在ViewModel中定义XAML控件的最佳方式,但这是获得更好易读性的最快方法。

答案 1 :(得分:0)

使用附加属性以最友好的MVVM方式解决了我的问题。 您可以获得文本并根据需要添加到TextBlock Inlines。

附属物c#:

public static class TextBlockAp {
    public static readonly DependencyProperty SubscriptTextProperty = DependencyProperty.RegisterAttached(
        "SubscriptText", typeof(string), typeof(TextboxAttachedProperty), new PropertyMetadata(OnSubscriptTextPropertyChanged));

    public static string GetSubscriptText(DependencyObject obj) {
        return (string)obj.GetValue(SubscriptTextProperty);
    }

    public static void SetSubscriptText(DependencyObject obj, string value) {
        obj.SetValue(SubscriptTextProperty, value);
    }

    private static void OnSubscriptTextPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
        try {
            var value = e.NewValue as string;
            if (String.IsNullOrEmpty(value)) return;
            var textBlock = (TextBlock)d;

            var startTag = "<Subscript>";
            var endTag = "</Subscript>";
            var subscript = String.Empty;
            if (value.Contains(startTag) && value.Contains(endTag)) {
                int index = value.IndexOf(startTag) + startTag.Length;
                subscript = value.Substring(index, value.IndexOf(endTag) - index);
            }

            var text = value.Split(new[] { startTag }, StringSplitOptions.None);
            textBlock.Inlines.Add(text[0]);
            Run run = new Run($" {subscript}") { BaselineAlignment = BaselineAlignment.Subscript, FontSize = 9 };
            textBlock.Inlines.Add(run);
        } catch (Exception ex) {
            if (ExceptionUtilities.UiPolicyException(ex)) throw;
        }
    }
}

XAML

<TextBlock ap:TextBlockAp.SubscriptText="{Binding MyProperty}" />

需要更多的重构才能正常工作,但这是一个开始。