如何消除显示弹性标题窗口时的内置延迟?

发布于 2024-10-27 20:29:10 字数 173 浏览 1 评论 0原文

Flex 标题窗口组件很好,但在它显示之前,如果它设置为模态,它会坚持模糊窗口的背景。如果我希望它立即显示或至少加快速度,以便用户不必等待输入数据,该怎么办?我是否必须构建一个基于 TitleWindow 的自定义组件才能获得此功能,或者不让它成为模式?如果我要这样做,我可以扩展当前的 TitleWindow 还是直接复制源代码?

The flex title window component is nice and all, but before it shows up it insists on blurring out the background of your window if it's set to modal. What if I want it to just show up immediately or at least speed it up so that the user doesn't have to wait around to enter data. Am I going to have to build a custom component based on TitleWindow to get this or not have it be modal? If I were to do that could I extend current TitleWindow or just copy out the source directly?

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

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

发布评论

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

评论(2

z祗昰~ 2024-11-03 20:29:10

使用应用程序样式,例如 modalTransparencyDuration
是的,您可以在 CSS 中应用它们:

global {
    modalTransparencyBlur:      2;
    modalTransparency:      0.8;
    modalTransparencyColor:     #000000;
    modalTransparencyDuration:  500;
}

Play with Application styles, such as modalTransparencyDuration.
Yes, you can apply those in the CSS:

global {
    modalTransparencyBlur:      2;
    modalTransparency:      0.8;
    modalTransparencyColor:     #000000;
    modalTransparencyDuration:  500;
}
盛夏已如深秋| 2024-11-03 20:29:10

在 PopupManager 中将模式设置为 false。这将允许用户与其他弹出窗口交互。

PopUpManager.addPopUp(titleWindow, this, false);

In your PopupManager set the modal to false.This will allow the user to interact with other popups.

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