有什么想法为什么不能按预期工作?
在运行时,我们的WPF应用程序的输出从字面上显示了\u2022序列..我希望项目符号点字符(Unicode Character 'BULLET' (U+2022)):

    <BulletDecorator VerticalAlignment="Center" >
        <BulletDecorator.Bullet>
            <TextBlock Text="\u2022"/>
        </BulletDecorator.Bullet>
        <TextBox Style="{StaticResource ReadOnlyTextBoxStyle}"
             TextWrapping="WrapWithOverflow"
             Text="{Binding Name, Mode=OneWay}"/>
    </BulletDecorator>

最佳答案

没关系-以下格式适用:

<TextBlock Text="&#x2022;"/>

关于c# - 具有TextBlock的BulletDecorator不显示Unicode字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21723219/

10-10 01:14