Apache Royale:如何在 Jewel Label 上显示 Handcursor?

Apache Royale : how to show Handcursor over Jewel Label?

有没有办法在鼠标经过 j:Label 时显示手形光标?

(相当于 buttonMode="true" useHandCursor="true" )。

此致

您可以使用 className="cursor-pointer"。来自 Tour de Jewel 示例:

<j:Label localId="label" text="This is a Label" click="labelClick(event)" className="cursor-pointer">
    <j:beads>
        <j:ToolTip toolTip="This Label is clickable!"/>
    </j:beads>
</j:Label>