如何防止从 PopUpButton 打开的画布在失去焦点时关闭?

发布于 2024-07-19 23:31:02 字数 159 浏览 2 评论 0原文

我有一个弹出按钮,用于启动包含用户可以提交的表单的画布。 我正在验证此表单并在验证失败时显示警报。 一旦用户单击警报上的“确定”,从 PopUpButton 启动的画布就会失去焦点并自动关闭(其默认行为)。 PopUpButton._closeOnActivity 是私有的。 非常感谢任何建议。

I have a popup button that launches a canvas containing a form that a user can submit. I'm validating this form and displaying an alert when the validation fails. As soon as the user clicks 'OK' on the alert, the canvas launched from the PopUpButton loses focus and closes automatically (its default behavior). PopUpButton._closeOnActivity is private. Any suggestions are greatly appreciated.

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

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

发布评论

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

评论(1

扭转时空 2024-07-26 23:31:02

使用 PopUpManager 和普通按钮手动弹出某些内容,而不是使用 PopUpButton。 然后,您可以在需要时打开和关闭它,并避免默认行为。

var canvas:Canvas = new Canvas();
PopUpManager.addPopUp(canvas, this);
PopUpManager.centerPopUp(canvas);
PopUpManager.removePopUp(canvas);

Use PopUpManager and a normal button to pop something up manually instead of using a PopUpButton. You can then open and close it when you want to and avoid the default behavior.

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