如何使用xul创建一个具有下拉效果的按钮?
我必须为 Firefox 创建一个扩展,它有一个下拉菜单。按钮的外观类似于 firebug。代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://sendtoie/skin/overlay.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://sendtoie/locale/sendtoie.dtd">
<overlay id="sendtoie-overlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="overlay.js"/>
<toolbarpalette id="BrowserToolbarPalette">
<menulist id="sendtoie-toolbar-button">
<menupopup>
<menuitem label="check" oncommand="ButtonCommand();"/>
<menuitem label="list1" oncommand="com2();" />
</menupopup>
</menulist>
</toolbarpalette>
</overlay>
此代码创建一个带有文本和图标的下拉菜单,但是当我右键单击 firefox 工具栏 -> 转到“自定义” -> 时,我会看到它。在“显示”选项中选择“仅图标”,文本“检查”保留,而且我无法将此扩展拖到“自定义”下拉框中。 如何获得类似于 Firebug 扩展的行为?
I have to create an extension for firefox which has a dropdown menu . The look of the button is similar to firebug.Here is the code:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://sendtoie/skin/overlay.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://sendtoie/locale/sendtoie.dtd">
<overlay id="sendtoie-overlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="overlay.js"/>
<toolbarpalette id="BrowserToolbarPalette">
<menulist id="sendtoie-toolbar-button">
<menupopup>
<menuitem label="check" oncommand="ButtonCommand();"/>
<menuitem label="list1" oncommand="com2();" />
</menupopup>
</menulist>
</toolbarpalette>
</overlay>
This code create a dropdown menu with a text and icon, but when I right click on the firefox toolbar->go to Customize -> Select "Only icons" in "Show"option, the text "check" remains and also I cannot drag this extension to the "Customize" drop box.
How can I get a behaviour similar to Firebug extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工具栏按钮应始终为
,请参阅 https:// /developer.mozilla.org/en/XUL/toolbarbutton 有关它的文档。您可以使用type="menu"
或type="menu-button"
显示下拉菜单:A toolbar button should always be a
<toolbarbutton>
, see https://developer.mozilla.org/en/XUL/toolbarbutton for documentation on it. You can usetype="menu"
ortype="menu-button"
to show a drop-down menu: