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.
我有 form1、form2 和 form3 三种形式。我希望当 Form1 打开时,所有表单都必须关闭(setVisible (false)),除了 Form1。所以,当 Form1 处于活动状态时,只打开 Form1
setVisible (false)
我该怎么做?
也许只需检查 form1是否存在isVisible(form1),如果是,则setVisible(false). 这是你想要的吗?
isVisible(form1)
setVisible(false)
我想到了另一件事。取决于你想做什么,也许使用dispose()而不是setVisible().
dispose()
setVisible()
希望我能帮上忙。