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

📄 testapplet.java

📁 《Java2图形设计卷II:Swing》配套光盘源码
💻 JAVA
字号:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class TestApplet extends JApplet {
	public void init() {
		Container contentPane = getContentPane();
		final JPanel panel = new JPanel();
		JButton button = new JButton("repaint");

		panel.setBackground(Color.blue);
		panel.setPreferredSize(new Dimension(100,100));

		contentPane.setLayout(new FlowLayout());
		contentPane.add(button);
		contentPane.add(panel);

		button.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				Color c = panel.getBackground();
				Dimension sz = panel.getSize();

				panel.setBackground(
					c == Color.blue ? Color.red : Color.blue);

				panel.paintImmediately(
								0,0,sz.width,sz.height);

				// for illustrative purposes only
				try {
					Thread.currentThread().sleep(5000);
				}
				catch(InterruptedException ex) {
					ex.printStackTrace();
				}
			}
		});
	}
}

⌨️ 快捷键说明

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