註冊時間: 2006-06-30, 00:10 文章: 23
|
自己解了..從Ie Tab 那邊看出來的
在該xul那邊,建立一個windows
<window id="main-window">
<!-- tooltips -->
<tooltip id="sample-tooltip" noautohide="true" orient="vertical" position="before_start" style="padding:2px;">
<vbox>
<label value="111" style="margin:2px;"/>
<label value="222" style="margin:2px;"/>
<label value="333" style="margin:2px;"/>
</vbox>
</tooltip>
</window>
然後再把status tooltip ,指定為windows裡面tooltip的id就可以了
<statusbar id="status-bar">
<statusbarpanel id="sample-status"
tooltip="sample-tooltip" />
</statusbar>
|
|