c# – 为什么不显示在Windows窗体标签中?

c# – 为什么不显示在Windows窗体标签中?,第1张

概述参见英文答案 > Enter “&” symbol into a text Label in Windows Forms?                                    5个 考虑: Label label = new Label();label.Text = "&"; 但是……在我运行程序之后,我看不到&amp ;, 如何在标签显示该字符? 我想只显示角色. &安培 参见英文答案 > Enter “&” symbol into a text Label in Windows Forms?5个
考虑:
Label label = new Label();label.Text = "&";

但是……在我运行程序之后,我看不到&amp ;,

如何在标签中显示该字符?

我想只显示角色. &安培;

解决方法 那是因为&在标签,按钮和菜单中添加前缀以访问关键字符,即可以使用Alt按下这些字符以直接为控件提供焦点.
label1.UseMnemonic = false;

将摆脱这种行为.

UseMnemonic的文档:

true if the label doesn’t display the ampersand character and underlines the character after the ampersand in its displayed text and treats the underlined character as an access key; otherwise,false if the ampersand character is displayed in the text of the control. The default is true.

如果你需要显示&和访问键的行为,那么你需要逃避& as&&,正如其他几个答案所提到的那样.

总结

以上是内存溢出为你收集整理的c# – 为什么不显示在Windows窗体标签中?全部内容,希望文章能够帮你解决c# – 为什么不显示在Windows窗体标签中?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1240545.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存