Java中单击Button,在一个Jframe内切换Jpanel。
importjavax.swing.*;importjava.awt.*;importjavax.swing.event.*;importjava.awt.event.*...
import javax.swing.*;import java.awt.*;import javax.swing.event.*;import java.awt.event.*;
public class one { public static void main(String[] args) { // TODO code application logic here new MyFrame(); }}class MyFrame extends JFrame{ public MyFrame(){ JFrame jf = new JFrame("myframe"); JPanel p1 = new JPanel();/*这是定义的第一个界面*/ GridLayout GL = new GridLayout(2,3); p1.setLayout(GL);
JPanel p2 = new JPanel();/*这是第二个*/ GridLayout GL1 = new GridLayout(3,2); p2.setLayout(GL1); jf.add(p1); p1.add(new JButton("one")); p1.add(new JButton("two")); p1.add(new JButton("three")); p1.add(new JButton("four")); p1.add(new JButton("five")); p1.add(new JButton("six")); p2.add(new JButton("one")); p2.add(new JButton("two")); p2.add(new JButton("three")); p2.add(new JButton("four")); p2.add(new JButton("five")); p2.add(new JButton("six"));
jf.setBounds(300,300,400,300); jf.setVisible(true); jf.setDefaultCloseOperation(MyFrame.EXIT_ON_CLOSE); } }
这是第一个界面
这是第二个界面
单击界面内的任意一个button 展开
public class one { public static void main(String[] args) { // TODO code application logic here new MyFrame(); }}class MyFrame extends JFrame{ public MyFrame(){ JFrame jf = new JFrame("myframe"); JPanel p1 = new JPanel();/*这是定义的第一个界面*/ GridLayout GL = new GridLayout(2,3); p1.setLayout(GL);
JPanel p2 = new JPanel();/*这是第二个*/ GridLayout GL1 = new GridLayout(3,2); p2.setLayout(GL1); jf.add(p1); p1.add(new JButton("one")); p1.add(new JButton("two")); p1.add(new JButton("three")); p1.add(new JButton("four")); p1.add(new JButton("five")); p1.add(new JButton("six")); p2.add(new JButton("one")); p2.add(new JButton("two")); p2.add(new JButton("three")); p2.add(new JButton("four")); p2.add(new JButton("five")); p2.add(new JButton("six"));
jf.setBounds(300,300,400,300); jf.setVisible(true); jf.setDefaultCloseOperation(MyFrame.EXIT_ON_CLOSE); } }
这是第一个界面
这是第二个界面
单击界面内的任意一个button 展开
2个回答
展开全部
http://www.oschina.net/code/snippet_54100_1235
cardlayout例子。
cardlayout例子。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询