在扩展JFrame的类中的另一个JFrame上绘制一条线

时间:2012-05-26 20:10:05

标签: java swing jframe graphics2d

我有一个有两个JFrame的类,我试图在特定的帧上画一条线。

我尝试了下面的代码,但它只出现在第一帧中,即成功帧。

它也出现在成功框架的所有其他组件之上,从而使所有其他组件

组件不可见。它没有出现在comp框架中。

我该如何纠正这个问题。

这是我到目前为止的代码:

import javax.swing.*;
import java.awt.*;
import java.awt.geom.*;
import java.awt.event.*;

public class lineGUI{
public static void main(String []args){
Success s=new Success();
s.setVisible(true);
  }
}

class Success extends JFrame{

JPanel alas =new JPanel();
JFrame comp =new JFrame();
public Success(){
JPanel panel=new JPanel();
getContentPane().add(panel);
setSize(450,450);

JButton button =new JButton("press");
panel.add(button);

  comp.setSize(650,500);
  comp.setTitle("View Report");

  JRootPane compPane=comp.getRootPane();
  Container contePane=compPane.getContentPane();
  contePane.add(alas);


    ActionListener action =new ActionListener(){
      public void actionPerformed(ActionEvent e){
        if (e.getSource()==button){
          comp.setVisible(true);
        }
      }
    };
    button.addActionListener(action);

  JButton button2=new JButton("access");
  alas.add(button2);
 }

public void paint(Graphics g) {
comp.paint(g);
Graphics2D g2 = (Graphics2D) g;
Line2D lin = new Line2D.Float(100, 100, 250, 260);
g2.draw(lin);
  }
}

2 个答案:

答案 0 :(得分:2)

你有一些疯狂的代码。意见建议:

  • 不要直接在JFrame中绘制,而是在从JComponent派生的对象的paintComponent方法中绘制,例如JPanel或JComponent本身。
  • 您的绘图直接在另一个组件的paint(...)方法中根本不是犹太洁食。为什么不简单地在类之间共享数据,并使用数据(int)来绘制所需的位置。
  • 您很少希望GUI一次显示多个JFrame。通常一个窗口是主窗口(JFrame),它通常拥有任何其他窗口,这些窗口可以是对话窗口,例如JDialogs。
  • 阅读图形教程,了解正确的Swing Graphics方法

答案 1 :(得分:0)

两件事:

如果要绘制“comp”框架,则应明确扩展该框架以重载其paint方法。现在你正在重载“成功”框架的绘制方法。行comp.paint(g)使用comp(标准JFrame)的paint方法绘制“Success”框架的Graphics对象。您可能希望将其转换为super.paint(g),然后将此paint函数放入其自己的JFrame中并从中创建comp。

http://pastebin.com/ZLYBHpmj

(对不起,第一篇文章,无法弄清楚如何让Stackoverflow退出抱怨格式)