Right To Left Bracket display wrong
When the Label text value ends with end bracket. The result in Right to Left is wrong like example.
Text: ABC (123) Result: (ABC (123 Expected Result: ABC (123)
Is there any solution to fix it?
You have to use the Unicode Right-to-left mark
, ( U+200F
) in your text. Conversely, use the Left-to-right mark
(`U+200E) if you know you need LTR rendering.
Check your input encoding.you should use UTF family or unicode to gain your goal. also check your file encoding in visual studio.
链接地址: http://www.djcxy.com/p/12392.html上一篇: 使用Java启用PDF快速Web视图?
下一篇: 从右到左括号显示错误