处理 Winforms TextBox 中的控制字符
我正在使用以下序列:Alt+27(使用数字键盘)以便在 Winforms 文本框中输入“Esc”字符。然后我尝试使用 Text 属性读回文本框字符串。我原以为第一个字符是“Esc”(整数值 27),但我发现整数值是 8592。这是怎么回事?如何正确读回“Esc”字符?
I am using this sequence: Alt+27 (using the numeric keypad) in order to enter the 'Esc' character in a Winforms TextBox. Then I attempt to read back the textbox string using the Text property. I was expecting the first character to be 'Esc' (integer value 27) but instead I found that the integer value of 8592. What is going on? How can I read back correctly the 'Esc' character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Alt-27 是
←
的快捷方式,它确实是 Unicode 字符 8592 - 请参阅 http:// /www.alt-codes.net/ 查看完整列表。Alt-27 is a shortcut for
←
which is indeed Unicode character 8592 - see http://www.alt-codes.net/ for the full list.