Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序有一个从 OTB 应用程序打开的基本对话框。然后我有 4 个对话框,可通过单击基本对话框中的按钮打开。
我正在尝试决定是否需要使用 setBlockOnOpen,但我并不是 100% 完全符合它的功能。
setBlockOnOpen(true)应该在方法之后停止处理open()并等到Dialog关闭才能继续处理。
setBlockOnOpen(true)
open()
setBlockOnOpen(false)允许您的代码在该方法之后继续处理open()。
setBlockOnOpen(false)