JFrame子类的内部窗体
/*建立JFrame子类的内部窗体*/importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;classR...
/*建立JFrame子类的内部窗体*/
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class Rootwindow extends JFrame
{
Container con;
Rootwindow()
{
setSize(300,300);
setVisible(true);
Container con=getContentPane();
con.setLayout(new FlowLayout());
JButton jbtn=new JButton("打开一个内部窗体");
con.add(jbtn);
jbtn.addActionListener(this);
validate();
addWindowListener(new WindowAdapter()
{public void windowClosing(WindowEvent e)
{System.exit(0);}
});
}
/*响应按钮事件,建立内部窗体*/
public void actionPerformed(ActionEvent e)
{JInternalFrame intf;
intf=new JInternalFrame("内部窗体",true,true,true,true);
intf.setSize(150,150);
intf.setVisible(true);
con.add(intf);
JTextArea text=new JTextArea(10,20);
intf.getContentPane().add(text,BorderLayout.CENTER);
}
}
public class Example5_2
{public static void main(String ags[])
{Rootwindow win=new Rootwindow();
win.pack();
}
}
运行结果提示16行出错,但是不知道怎么回事,那位高手帮忙看下,谢谢
16行程序修改后class RootWindow extends JFrame implements ActionListener
程序可以运行,但是程序中的内部窗体无法打开 展开
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class Rootwindow extends JFrame
{
Container con;
Rootwindow()
{
setSize(300,300);
setVisible(true);
Container con=getContentPane();
con.setLayout(new FlowLayout());
JButton jbtn=new JButton("打开一个内部窗体");
con.add(jbtn);
jbtn.addActionListener(this);
validate();
addWindowListener(new WindowAdapter()
{public void windowClosing(WindowEvent e)
{System.exit(0);}
});
}
/*响应按钮事件,建立内部窗体*/
public void actionPerformed(ActionEvent e)
{JInternalFrame intf;
intf=new JInternalFrame("内部窗体",true,true,true,true);
intf.setSize(150,150);
intf.setVisible(true);
con.add(intf);
JTextArea text=new JTextArea(10,20);
intf.getContentPane().add(text,BorderLayout.CENTER);
}
}
public class Example5_2
{public static void main(String ags[])
{Rootwindow win=new Rootwindow();
win.pack();
}
}
运行结果提示16行出错,但是不知道怎么回事,那位高手帮忙看下,谢谢
16行程序修改后class RootWindow extends JFrame implements ActionListener
程序可以运行,但是程序中的内部窗体无法打开 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询