显示a&在菜单项或菜单条中
我有一个菜单项需要采用这样的格式:This &那,但是&被转换为下划线。是否有转义字符实际上能够显示 &?
I have a menu item that needs to be formated like This & That, but the & is converted to an underscore. Is there an escape character to actually be able to display the &?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将“&”加倍即可特点
Just double the '&' character
要么使用双 & 符号(但这会改变字符串文字),要么您应该能够将菜单项的 UseMnemonic 属性设置为 false。
Either use a double ampersand (but that will change the string literal) or you should be able to set the UseMnemonic property of the menuitem to false.