鼠标悬停到 Flex 中的面板上

发布于 2024-10-03 12:35:57 字数 73 浏览 2 评论 0原文

我是 Flex 新手。当我将鼠标悬停在面板中的图标上时,该特定面板应该通过覆盖窗口中的所有其他面板而出现在前面。我该怎么做,请帮助我

I am new to flex.When i mouse over on the icon in the panel that particular panel should come front by overriding all other panel in the window.How can i do this Pleases help me out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮酒 2024-10-10 12:35:57

要将面板置于前面,请尝试以下操作:
`

<mx:Script>
    <![CDATA[           
        protected function panel1_clickHandler(event:MouseEvent):void
        {
            setChildIndex(event.currentTarget as Panel, numChildren); 
        }
    ]]>
</mx:Script>

<mx:Panel width="200" height="400" y="50" x="50" rollOver="panel1_clickHandler(event)" title="back"/>
<mx:Panel width="200" height="400" id="otherPanel" rollOver="panel1_clickHandler(event)" title="front" />

`

For bringing a panel to front, try this:
`

<mx:Script>
    <![CDATA[           
        protected function panel1_clickHandler(event:MouseEvent):void
        {
            setChildIndex(event.currentTarget as Panel, numChildren); 
        }
    ]]>
</mx:Script>

<mx:Panel width="200" height="400" y="50" x="50" rollOver="panel1_clickHandler(event)" title="back"/>
<mx:Panel width="200" height="400" id="otherPanel" rollOver="panel1_clickHandler(event)" title="front" />

`

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文