簡體   English   中英

使用Mouse事件操作獲取Flex組件ID

[英]Get flex component id using Mouse event action

在Flex應用程序中,如何使用鼠標事件獲取特定顯示組件的ID。 例如,如果我想獲取按鈕的ID,則應在單擊按鈕時顯示它

使用event.currentTarget.id做到這一點:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">

    <fx:Script>
        <![CDATA[
            import mx.controls.Alert;
            protected function niceButton_clickHandler(event:MouseEvent):void
            {
                Alert.show(" the button id is: "+event.currentTarget.id)

            }
        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:HGroup width="100%" height="100%" verticalAlign="middle" horizontalAlign="center">
        <s:Button id="niceButton" label="click me" click="niceButton_clickHandler(event)" />
    </s:HGroup>
</s:Application>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM