我对Java中的GUI编程非常陌生,并且遇到了一个问题,即一个组件的更改导致必须重新绘制另一个组件(不是父组件或子组件或祖父组或孙子组件等)。更具体地说,我有一个窗口作为winGUI
(JFrame
的子类),带有BorderLayout contentPane,其中包含一个组件,该组件具有以下方法,该方法在单击该组件时运行:
winGUI window = (winGUI)(getParent().getParent().getParent().getParent());
window.updatePanel(panelContent);
(我怀疑这是一种更好的检索窗口的方法,所以最好知道。)
winGUI的类定义如下
import java.awt.BorderLayout;
import java.awt.Toolkit;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class winGUI extends JFrame {
private UIController userInterface;
private JPanel content;
public static void main(String[] args) {
JFrame window = new winGUI();
window.setResizable(false);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setVisible(true);
}
public winGUI() {
super("Window");
setSize(Toolkit.getDefaultToolkit().getScreenSize());
setResizable(false);
content = new JPanel();
content.setLayout(new BorderLayout());
userInterface = new UIController();
content.add(userInterface.getCenter(), BorderLayout.CENTER);
content.add(userInterface.getPanel(), BorderLayout.WEST);
setContentPane(content);
setLocation(0, 0);
}
public void updatePanel(PanelContent panelContent) {
userInterface.buildPanel(panelContent);
content.add(userInterface.getPanel(), BorderLayout.WEST);
}
}
以下是UIController类的重要部分:
private JPanel sidePanel;
public UIController() {
buildPanel(null);
}
public void buildPanel(PanelContent panelContent) {
sidePanel = new JPanel();
sidePanel.setBackground(new Color(220, 220, 220));
sidePanel.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
sidePanel.setPreferredSize(new Dimension(250, 500));
if (panelContent != null) {
sidePanel.add(new JLabel(panelContent.getLabel()));
}
}
public JPanel getPanel() {
return sidePanel;
}
在userInterface.buildPanel(panelContent)
方法中调用updatePanel
之后,我希望该面板可以更改,因为getPanel()方法通过引用传递,因此当组件添加到content
时窗口创建时应该更新sidePanel
因为它们引用了同一个对象。但是,这没有发生,所以我尝试添加
content.add(userInterface.getPanel(), BorderLayout.WEST);
userInterface.getPanel().repaint();
this.repaint();
到updatePanel
方法的结尾,但无济于事。
非常感谢任何帮助。
答案 0 :(得分:1)
您可以使用observer pattern(创建自己的Swing侦听器)将事件传递给winGui
,它应该更新它的面板。
interface SomeUpdateListener {
public void onUpdate(PanelContent panelContent);
}
然后让winGui
成为这样的倾听者:
public class winGUI extends JFrame implements SomeUpdateListener
...
@Override
public void onUpdate(PanelContent panelContent) {
userInterface.buildPanel(panelContent);
content.add(userInterface.getPanel(), BorderLayout.WEST);
// Fix for your last issue I believe
this.revalidate(); // Pretty sure this is what's needed in your case
this.repaint(); // redraws them
}
我不知道自定义组件实际用于调用updatePanel是什么或它是如何工作的,但我们现在假设它被称为SomeCustomComponent
,现在大致有以下代码:
public class SomeCustomComponent extends JComponent {
private SomeUpdateListener listener;
public SomeCustomComponent(SomeUpdateListener someListener) {
this.listener = someListener;
}
...
private void timeToMakeThatPanelContentUpdate() {
PanelContent newContent = createNewPanelContents();
listener.onUpdate(newContent);
}
...
所以现在有了这个新的"听众"类型,你没有在你的父母(或我最终在这里假设的父母......)和你的应用程序代码中的子组件之间有直接循环的引用。
注意我添加了几行来修复面板的最后一期未使用onUpdate()
方法中的最新内容进行更新。
this.revalidate(); // Pretty sure this is what's needed in your case
this.repaint();
此外,如果您正在创建的面板通过某些GUI组件组合实际上没有任何不同,而只是与它显示的信息不同,那么也许您应该只传递代表现有GUI组件现在应该显示的内容的数据。 / p>