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

📄 icondemo.java

📁 本压缩文件中含有线程的控制
💻 JAVA
字号:
package gui;


import javax.swing.*;
import java.awt.*; 
import java.awt.event.*;

public class IconDemo extends JFrame implements ActionListener{
    public static final int WIDTH = 400;
    public static final int HEIGHT = 200;

    private JTextField message;

    public IconDemo( ){
        setSize(WIDTH, HEIGHT);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setTitle("Icon Demonstration");
        Container content = getContentPane( );
        content.setBackground(Color.WHITE);
        content.setLayout(new BorderLayout( ));

        JLabel niceLabel = new JLabel("Nice day!");
        ImageIcon smileyIcon = new ImageIcon("smiley.gif");
        niceLabel.setIcon(smileyIcon);
        content.add(niceLabel, BorderLayout.NORTH);

        JPanel buttonPanel = new JPanel( );
        buttonPanel.setLayout(new FlowLayout( ));
        
        JButton helloButton = new JButton("Hello");
        ImageIcon dukeWavingIcon = new ImageIcon("duke_waving.gif");
        helloButton.setIcon(dukeWavingIcon);
        helloButton.addActionListener(this);
        buttonPanel.add(helloButton);
        
        JButton byeButton = new JButton("Good bye");
        ImageIcon dukeStandingIcon =new ImageIcon("duke_standing.gif");
        byeButton.setIcon(dukeStandingIcon);
        byeButton.addActionListener(this);
        buttonPanel.add(byeButton);
        
        content.add(buttonPanel, BorderLayout.SOUTH);

        message = new JTextField(30);
        content.add(message, BorderLayout.CENTER);
    }

    public void actionPerformed(ActionEvent e){
       if (e.getActionCommand( ).equals("Hello"))
           message.setText("Glad to meet you!");
       else if (e.getActionCommand( ).equals("Good bye"))
           message.setText("OK, click the upper right button. I'll miss you.");
       else
           System.out.println("Error in button interface.");
    }

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

⌨️ 快捷键说明

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