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 IDE 制作一个 JFrame,并且所有代码都没有错误,当我尝试运行应用程序时,Frame 不可见。问题是什么?
我敢肯定你忘了写这段代码:
setVisible(true);
在你做之前
确保您创建了一个构造函数,例如:
public YourFrame(){ setVisible(true); }
我希望这可以帮助你。
在我尝试了所有解决方案但没有任何效果之后,我将按钮和文本框等单个对象复制到一个新表单中,并在每次添加后运行该表单。它终于奏效了。