重绘主框架

发布于 2024-11-08 12:44:32 字数 85 浏览 2 评论 0原文

想象一下这种情况。我有一个主 JFrame 窗口和另一个通过单击按钮从主窗口弹出的窗口。如果我想通过单击弹出窗口上的按钮来重新绘制主窗口中的图形,该怎么办?

Imagine this situation. I have main JFrame window and another one which pops out from the main window, by button click. What should I do if I want to repaint graph in main window by clicking the button on the popped up window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2024-11-15 12:44:32

弹出的窗口需要对主窗口的引用。因此,在弹出窗口的构造函数中,您将接受对主窗口的引用并保留它直到需要为止。

在主窗口中,您可以编写一个方法 update() ,可以从弹出的窗口中调用该方法,并使主窗口相应地重新绘制自身。例如:

PoppedUpWindow win = new PoppedUpWindow(this);//this is the main window

在弹出的窗口中:

MainWindow mainWin;
JButton btn;

public PoppedUpWindow(MainWindow mwin){
    mainWin = mwin;
    btn = new JButton("Click to Update");
    btn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
              mainWin.update();
        }
    });
}

The popped up window needs a reference to the main window. So in the constructor of the popped up window you will accept a reference to the main window and keep it until needed.

In the main window you can write a method update() that can be called from the popped up window and cause the main window to repaint itself accordingly. For example:

PoppedUpWindow win = new PoppedUpWindow(this);//this is the main window

and in the popped up window:

MainWindow mainWin;
JButton btn;

public PoppedUpWindow(MainWindow mwin){
    mainWin = mwin;
    btn = new JButton("Click to Update");
    btn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
              mainWin.update();
        }
    });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文