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.
我想在 netbeans 中创建一个隐藏按钮。假设如果我单击 Next 按钮,那么新的“Exit”按钮将出现在同一个 jFrame 中。在我单击“下一步”按钮之前,不会显示“退出”按钮。那么如何制作呢?我的意思是如何在netbeans的.setVisible(false)中创建一个默认的按钮?
请帮我解决这个问题。
由于您似乎已经知道正确的方法,我假设您怀疑的是 Netbeans 操作。
右键单击方法并选择“自定义代码”。
然后您将有机会在按钮创建后添加正确的代码。
JButton.setVisible(false);创建按钮后立即使用。
JButton.setVisible(false);