如何扩展 Xul 按钮并使其可聚焦?
当我在 XBL 中扩展此按钮时:
<binding id="myFancyButton" extends="chrome://global/content/bindings/button.xml#button">
如何使其成为可聚焦按钮?
When I extends this button in my XBL:
<binding id="myFancyButton" extends="chrome://global/content/bindings/button.xml#button">
how do I make it a focusable button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于我不确定您的 button.xml 中有什么,
我只能提供此链接并要求您确保您的按钮遵循此处的准则:https://wiki.mozilla.org/XUL:Focus_Behaviour
特别是关于 -moz-user-focus 属性的部分很重要。
编辑:这是一个简单的 hello world 示例,按钮是可聚焦的。
As I am not sure what you have in your button.xml,
I can only really provide this link and ask you to make sure your button follows the guidelines here: https://wiki.mozilla.org/XUL:Focus_Behaviour
Especially the bit about the -moz-user-focus property is important.
Edited: this is a simple hello world example, the button is focusable.