始终使用 运行 标签的 TextBlock 样式

TextBlock Style to always use Run Tag

在 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> 标签添加到我所有的文本块内容中,我该如何实现,这样我就不必替换代码中的所有文本块了。

如何通过创建样式来做到这一点...??

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

不能说我喜欢你的方法,但我不知道阿拉伯语的陷阱和你的情况,所以不会争论这个。您可以使用附加属性(或混合行为)实现您想要的。像这样:

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>