TextBlock样式始终使用运行标记

时间:2016-03-28 15:13:49

标签: c# wpf arabic right-to-left

在WPF阿拉伯语模式下(FlowDirection =“RightToLeft”)。

当我提供 -24.7%这样的数字时,会将其打印为%24.7 -

以下代码将解决上述问题。

<Window.Resources>

    <Style TargetType="Run">
        <Setter Property="FlowDirection" Value="LeftToRight" />
    </Style>      

</Window.Resources>

<Grid FlowDirection="RightToLeft" >
    <Grid HorizontalAlignment="Left" Margin="114,127,0,0"  VerticalAlignment="Top" Width="279" Height="97">
        <TextBlock x:Name="textBlock" Text="-24.7%" ><Run></Run></TextBlock>
    </Grid>
</Grid>

现在我想将<run><run>标记放到我的所有文本块内容中,如何实现这一点,所以我不必替换代码中的所有TextBlock。

如何通过创建样式来实现这一点...... ??

注意:我无法转到TextAlign = Right解决方案,因为我无法编辑应用程序中的所有文本块

1 个答案:

答案 0 :(得分:1)

不能说我喜欢你的方法,但我不了解阿拉伯语问题和你的情况,因此不会争论。您可以使用附加属性(或混合行为)来实现您想要的效果。像这样:

public static class StrangeAttachedProperty {
    public static bool GetAddRunByDefault(DependencyObject obj) {
        return (bool) obj.GetValue(AddRunByDefaultProperty);
    }

    public static void SetAddRunByDefault(DependencyObject obj, bool value) {
        obj.SetValue(AddRunByDefaultProperty, value);
    }

    public static readonly DependencyProperty AddRunByDefaultProperty =
        DependencyProperty.RegisterAttached("AddRunByDefault", typeof (bool), typeof (StrangeAttachedProperty), new PropertyMetadata(AddRunByDefaultChanged));

    private static void AddRunByDefaultChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
        var element = d as TextBlock;
        if (element != null) {
            // here is the main point - you can do whatever with your textblock here
            // for example you can check some conditions and not add runs in some cases
            element.Inlines.Add(new Run());
        }
    }
}

在您的资源中为所有文本块设置此属性:

<Window.Resources>
    <Style TargetType="TextBlock">
        <Setter Property="local:StrangeAttachedProperty.AddRunByDefault" Value="True" />
    </Style>
    <Style TargetType="Run">
        <Setter Property="FlowDirection" Value="LeftToRight" />
    </Style>
</Window.Resources>