⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 visibilitydemoexercise.java

📁 此文件能系统的介绍Java初级知识
💻 JAVA
字号:
package swing.visibility;

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

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



public class VisibilityDemoExercise extends JFrame
                            implements ActionListener
{
    public static final int WIDTH = 300;
    public static final int HEIGHT = 200;

    private JLabel upLabel;
    private JLabel downLabel;
    private JButton upButton;
    private JButton downButton;

    public VisibilityDemoExercise()
    {
        setSize(WIDTH, HEIGHT);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setTitle("Visibility Demonstration");
        Container contentPane = getContentPane();
        contentPane.setLayout(new BorderLayout());
        contentPane.setBackground(Color.WHITE);

        upLabel = new JLabel("Here I am up here!");
        contentPane.add(upLabel, BorderLayout.NORTH);
        upLabel.setVisible(false);
        downLabel = new JLabel("Here I am down here!");
        contentPane.add(downLabel, BorderLayout.SOUTH);
        downLabel.setVisible(false);

        JPanel buttonPanel = new JPanel();
        buttonPanel.setBackground(Color.WHITE);
        buttonPanel.setLayout(new FlowLayout());
        upButton = new JButton("Up");
        upButton.addActionListener(this);
        buttonPanel.add(upButton);
        downButton = new JButton("Down");
        downButton.addActionListener(this);
        buttonPanel.add(downButton);
        contentPane.add(buttonPanel, BorderLayout.CENTER);
    }

    public void actionPerformed(ActionEvent e)
    {
       if (e.getActionCommand().equals("Up"))
	   {
	       upLabel.setVisible(true);
	       downLabel.setVisible(false);
	       upButton.setVisible(false);
	       downButton.setVisible(true);
	       validate();
	   }
	   else if (e.getActionCommand().equals("Down"))
	   {
	       downLabel.setVisible(true);
	       upLabel.setVisible(false);
	       downButton.setVisible(false);
	       upButton.setVisible(true);
	       validate();
	   }
	   else
	       System.out.println(
                 "Error in VisibilityDemoExercise interface.");
    }

    public static void main(String[] args)
    {
        VisibilityDemoExercise demoGui = new VisibilityDemoExercise();
        demoGui.setVisible(true);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -