如何让PopUpManager正确显示基于spark TitleWindow的自定义组件?

发布于 2024-10-14 11:17:46 字数 1448 浏览 3 评论 0原文

我使用此代码创建并显示 MessageWindow:

   var newTitleWindow:MessageWindow = PopUpManager.createPopUp(contextView,MessageWindow, true) as MessageWindow;
   newTitleWindow.text = message;
   PopUpManager.centerPopUp(newTitleWindow);

MessageWindow 源代码:

<?xml version="1.0"?>
<s:TitleWindow title="Something gone wrong" width="200" height="130" xmlns:mx="http://www.adobe.com/2006/mxml"
               close="closeMe()" resize="centerMe()" xmlns:s="library://ns.adobe.com/flex/spark" >
    <mx:Script><![CDATA[
        import mx.managers.PopUpManager;


        [Bindable]
        public var text:String;

        private function closeMe():void {
            PopUpManager.removePopUp(this);
        }

        private function centerMe():void {
            PopUpManager.centerPopUp(this);
        }
        ]]></mx:Script>
    <s:VGroup top="0" bottom="0" left="0" right="0">
        <s:Label id="lbl" left="10" right="10" textAlign="center" text="{text}"/>
        <s:Button id="btn"/>
    </s:VGroup>
</s:TitleWindow>

运行应用程序时没有显示嵌套组件。
s:TitleWindow 嵌套组件未显示

调试器显示它们已创建且可见。

让我感到“有趣”的是,当我用 mx:TitleWindow 替换 s:TitleWindow 时,会显示组件。
mx:TitleWindow 嵌套组件显示

我真的很想使用 Spark TitleWindow。 有什么技巧可以解决这种行为吗?

I use this code to create and show a MessageWindow:

   var newTitleWindow:MessageWindow = PopUpManager.createPopUp(contextView,MessageWindow, true) as MessageWindow;
   newTitleWindow.text = message;
   PopUpManager.centerPopUp(newTitleWindow);

MessageWindow source code:

<?xml version="1.0"?>
<s:TitleWindow title="Something gone wrong" width="200" height="130" xmlns:mx="http://www.adobe.com/2006/mxml"
               close="closeMe()" resize="centerMe()" xmlns:s="library://ns.adobe.com/flex/spark" >
    <mx:Script><![CDATA[
        import mx.managers.PopUpManager;


        [Bindable]
        public var text:String;

        private function closeMe():void {
            PopUpManager.removePopUp(this);
        }

        private function centerMe():void {
            PopUpManager.centerPopUp(this);
        }
        ]]></mx:Script>
    <s:VGroup top="0" bottom="0" left="0" right="0">
        <s:Label id="lbl" left="10" right="10" textAlign="center" text="{text}"/>
        <s:Button id="btn"/>
    </s:VGroup>
</s:TitleWindow>

There is no nested components displayed when I run my app.
s:TitleWindow nested components are not shown

The debugger shows they are created and visible.

To my "amusement" the components are shown when I replace s:TitleWindow with mx:TitleWindow.
mx:TitleWindow nested components are shown

I really want to use spark TitleWindow.
Is there any trick to fix this behavior?

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

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

发布评论

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

评论(1

ゃ懵逼小萝莉 2024-10-21 11:17:46

尝试用 fx:Script 替换 mx:Script

Try replacing mx:Script with fx:Script

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