zoukankan      html  css  js  c++  java
  • 利用JPanel类 JFrame JButton 以及布局管理类实现的一个简单布局界面


    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JButton;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.Color;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.FlowLayout;

    public class Outer extends JFrame implements ActionListener{
     /**
      *
      */
     private static final long serialVersionUID = 1L;
     public static final int WIDTH = 300;
     public static final int HEIGTH = 200;
     private JPanel redPanel;
     private JPanel whitePanel;
     private JPanel bluePanel;
     
     public static void main(String []args)
     { 
      Outer gui = new Outer();
      gui.setVisible(true);
     }
     public Outer()
     {
      super("Panel Demonstration");
      this.setSize(WIDTH,HEIGTH);
      this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      this.setLayout(new BorderLayout());
      
      JPanel biggerPanel = new JPanel();
      biggerPanel.setLayout(new GridLayout(1,3));
      
      redPanel = new JPanel();
      redPanel.setBackground(Color.LIGHT_GRAY);
      biggerPanel.add(redPanel);
      
      whitePanel = new JPanel();
      whitePanel.setBackground(Color.LIGHT_GRAY);
      biggerPanel.add(whitePanel);
      
      bluePanel = new JPanel();
      bluePanel.setBackground(Color.LIGHT_GRAY);
      biggerPanel.add(bluePanel);
      
      this.add(biggerPanel,BorderLayout.CENTER);
      JPanel buttonPanel = new JPanel();
      buttonPanel.setBackground(Color.LIGHT_GRAY);
      buttonPanel.setLayout(new FlowLayout());
      
      JButton redButton = new JButton("Red");
      redButton.setBackground(Color.RED);
      redButton.addActionListener(this);
      buttonPanel.add(redButton);
      
      JButton whiteButton = new JButton("White");
      whiteButton.setBackground(Color.WHITE);
      whiteButton.addActionListener(this);
      buttonPanel.add(whiteButton);
      
      JButton blueButton = new JButton("Blue");
      blueButton.setBackground(Color.BLUE);
      blueButton.addActionListener(this);
      buttonPanel.add(blueButton);
      
      this.add(buttonPanel,BorderLayout.SOUTH);
     }
     public void actionPerformed(ActionEvent e)
     {
      String str = e.getActionCommand();
      
      if(str.equals("Red"))
       redPanel.setBackground(Color.RED);
      else if(str.equals("White"))
       whitePanel.setBackground(Color.WHITE);
      else if(str.equals("Blue"))
       bluePanel.setBackground(Color.BLUE);
     }
    }

  • 相关阅读:
    Mybatis学习笔记
    Java——设计模式
    Java——多线程
    Java——集合
    DAO层、Service层、Controller层、View层
    Mybatis整合spring
    Spring中的DI和IOC
    事务
    Xml实现AOP
    2018.3.10考试的试题解析
  • 原文地址:https://www.cnblogs.com/xuxu8511/p/2498175.html
Copyright © 2011-2022 走看看