These characters show fine when I cut-and-paste them here from the VisualStudio debugger, but both in the debugger, and in the TextBox where I am trying to display this text, it just shows squares.
当我从VisualStudio调试器中剪切并粘贴它们时,这些字符显示正常,但是在调试器和我尝试显示此文本的TextBox中,它只显示正方形。
说明\r\n海流受季风影响,3-9 月份其流向主要向北,流速为2 节,有时达3 节;10 月至次年4 月份其流向南至东南方向,流速为2 节。\r\n注意\r\n附近有火山爆发的危险,航行时严加注意\r\n
说明\ r \ n海流受季风影响,3-9月份其流向主要向北,流速为2节,有时达3节; 10月至次年4月份其流向南至东南方向,流速为2节。 r \ñ注意\ r \ n附近有火山爆发的危险,航行时严加注意\ r \ n
I thought that the TextBox supported Unicode text. Any idea how I can get this text to display in my application?
我认为TextBox支持Unicode文本。知道如何在我的应用程序中显示此文本吗?
3 个解决方案
#1
You need to install and use a font which supports those characters. Not all fonts support all characters. the [] box character is the fonts representation of 'unsupported'
您需要安装和使用支持这些字符的字体。并非所有字体都支持所有字符。 []框字符是'不支持'的字体表示
The textbox might be using MS Sans Serif by default, so change it to Arial or something else.
默认情况下,文本框可能正在使用MS Sans Serif,因此将其更改为Arial或其他内容。
#2
I changed from using a TextBox to using a RichTextBox, and now the characters display in the RichTextBox.
我从使用TextBox更改为使用RichTextBox,现在字符显示在RichTextBox中。
#3
I was facing similar problem.
我面临着类似的问题。
It was problem with reading file properly and not with TextBox
control.
这是正确读取文件而不是TextBox控件的问题。
StreamReader reader = new StreamReader(inputFilePath, Encoding.Default, true)
Copied from THIS.
复制自此。
Works for me and that too without switching to RichTextBox
.
适用于我和那也没有切换到RichTextBox。
#1
You need to install and use a font which supports those characters. Not all fonts support all characters. the [] box character is the fonts representation of 'unsupported'
您需要安装和使用支持这些字符的字体。并非所有字体都支持所有字符。 []框字符是'不支持'的字体表示
The textbox might be using MS Sans Serif by default, so change it to Arial or something else.
默认情况下,文本框可能正在使用MS Sans Serif,因此将其更改为Arial或其他内容。
#2
I changed from using a TextBox to using a RichTextBox, and now the characters display in the RichTextBox.
我从使用TextBox更改为使用RichTextBox,现在字符显示在RichTextBox中。
#3
I was facing similar problem.
我面临着类似的问题。
It was problem with reading file properly and not with TextBox
control.
这是正确读取文件而不是TextBox控件的问题。
StreamReader reader = new StreamReader(inputFilePath, Encoding.Default, true)
Copied from THIS.
复制自此。
Works for me and that too without switching to RichTextBox
.
适用于我和那也没有切换到RichTextBox。