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.
我有 2 个 JFrame :来自屏幕 A 的 A 和 B :调用 B 为:
B b=new B(); b.setName("B1"); b.show();
和
B b=new B(); b.setName("B2"); b.show();
结果:显示 2 屏幕 B 为:B1 和 B2 如果来自屏幕 A:我想要设置值来控制 B1 或 B2。怎么码?谢谢?
使用CardLayout而不是创建两个或更多JFrame
如果您有真正重要的理由使用另一个弹出窗口和/或鼠标和按键事件的模式,请使用具有专利的JDialogJFrame
JFrame