如何防止从 PopUpButton 打开的画布在失去焦点时关闭?
我有一个弹出按钮,用于启动包含用户可以提交的表单的画布。 我正在验证此表单并在验证失败时显示警报。 一旦用户单击警报上的“确定”,从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 PopUpManager 和普通按钮手动弹出某些内容,而不是使用 PopUpButton。 然后,您可以在需要时打开和关闭它,并避免默认行为。
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.