我有一个有两个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);
}
}
答案 0 :(得分:2)
你有一些疯狂的代码。意见建议:
答案 1 :(得分:0)
两件事:
如果要绘制“comp”框架,则应明确扩展该框架以重载其paint方法。现在你正在重载“成功”框架的绘制方法。行comp.paint(g)
使用comp(标准JFrame)的paint方法绘制“Success”框架的Graphics对象。您可能希望将其转换为super.paint(g)
,然后将此paint函数放入其自己的JFrame中并从中创建comp。
(对不起,第一篇文章,无法弄清楚如何让Stackoverflow退出抱怨格式)