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.
我用 JFrame 创建了一个登录框,不允许用户输入空或有字母的用户名和密码。
我的登录框架和主框架类都是 jframe(扩展 jframe),我想对它们都使用这个 ImagePanel 类。但是,我想为我的每个类更改它的 painComponents() 方法。
我可以更改 ImagePanel 类摘要来执行此操作吗?
谢谢你。
您必须调用该repaint()方法。
repaint()
此外,如果添加新组件,您还必须验证框架:
validate(); repaint();