簡體   English   中英

如何關閉Flex中的所有彈出窗口?

[英]How to close all popup windows in Flex?

我想通過按一次按鈕顯示圖像上的所有彈出窗口(已經分別彈出並關閉),並想在再次按下按鈕時關閉所有這些窗口。 任何幫助表示贊賞。

嘗試這個:

package com.devahead.utils
{
    import flash.display.DisplayObject;

    import mx.collections.ArrayCollection;
    import mx.core.Application;
    //import mx.core.FlexGlobals; // NOTE: use this import for Flex 4.x and higher
    import mx.core.IChildList;
    import mx.core.UIComponent;
    import mx.managers.PopUpManager;

    public class PopUpUtils
    {
        /**
         * Returns all the popups inside an application. Only the popups whose base
         * class is UIComponent are returned.
         *
         * @param applicationInstance
         *   Application instance. If null, Application.application is used.
         * @param onlyVisible
         *   If true, considers only the visible popups.
         * @return All the popups in the specified application.
         */
        public static function getAllPopups(applicationInstance: Object = null,
            onlyVisible: Boolean = false): ArrayCollection
        {
            var result: ArrayCollection = new ArrayCollection();

            if (applicationInstance == null)
            {
                // NOTE: use this line for Flex 4.x and higher
                //applicationInstance = FlexGlobals.topLevelApplication;

                // NOTE: use this line for Flex 3.x and lower
                applicationInstance = Application.application;
            }

            var rawChildren: IChildList = applicationInstance.systemManager.rawChildren;

            for (var i: int = 0; i < rawChildren.numChildren; i++)
            {
                var currRawChild: DisplayObject = rawChildren.getChildAt(i);

                if ((currRawChild is UIComponent) && UIComponent(currRawChild).isPopUp)
                {
                    if (!onlyVisible || UIComponent(currRawChild).visible)
                    {
                        result.addItem(currRawChild);
                    }
                }
            }

            return result;
        }

        /**
         * Checks if an application has visible popups. Only the popups whose base
         * class is UIComponent are considered.
         *
         * @param applicationInstance
         *   Application instance. If null, Application.application is used.
         * @return True if there are visible popups in the specified application,
         *         false otherwise.
         */
        public static function hasVisiblePopups(applicationInstance: Object = null): Boolean
        {
            if (applicationInstance == null)
            {
                // NOTE: use this line for Flex 4.x and higher
                //applicationInstance = FlexGlobals.topLevelApplication;

                // NOTE: use this line for Flex 3.x and lower
                applicationInstance = Application.application;
            }

            var rawChildren: IChildList = applicationInstance.systemManager.rawChildren;

            for (var i: int = 0; i < rawChildren.numChildren; i++)
            {
                var currRawChild: DisplayObject = rawChildren.getChildAt(i);

                if ((currRawChild is UIComponent) && UIComponent(currRawChild).isPopUp
                    && UIComponent(currRawChild).visible)
                {
                    return true;
                }
            }

            return false;
        }

        /**
         * Closes all the popups belonging to an application. Only the popups
         * whose base class is UIComponent are considered.
         *
         * @param applicationInstance
         *   Application instance. If null, Application.application is used.
         * @return The list of the closed popups.
         */
        public static function closeAllPopups(applicationInstance: Object = null): ArrayCollection
        {
            var allPopups: ArrayCollection = getAllPopups(applicationInstance);

            for each (var currPopup: UIComponent in allPopups)
            {
                PopUpManager.removePopUp(currPopup);
            }

            return allPopups;
        }
    }
}

我是從以下網站獲得的: http : //www.devahead.com/blog/2009/12/getting-all-the-popups-in-a-flex-application/

嘗試這個:

for (var i:int = systemManager.popUpChildren.numChildren - 1; i >= 0; i--)
{
    var popup:IFlexDisplayObject = IFlexDisplayObject(systemManager.popUpChildren.getChildAt(i));
    PopUpManager.removePopUp(popup);
}

暫無
暫無

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

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