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

📄 test.java

📁 swing 教程,与大家分享一下,哈哈,希望大家多多指教
💻 JAVA
字号:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Test extends JApplet {
	public void init() {
		Container contentPane = getContentPane();
		CustomAction action = new CustomAction();
		CustomButton button = new CustomButton(action);

		contentPane.setLayout(new FlowLayout());
		contentPane.add(button);
	}
}
class CustomButton extends JButton {
	public CustomButton(Action action) {
		super((String)action.getValue(Action.NAME),
			  (Icon)action.getValue(Action.SMALL_ICON));

		String shortDescription = (String)action.getValue(
									Action.SHORT_DESCRIPTION);

		setToolTipText(shortDescription);
		addActionListener(action);
	}
}
class CustomAction extends AbstractAction {
	public CustomAction() {
		super("doit", new ImageIcon("skelly.gif"));
		putValue(Action.SHORT_DESCRIPTION, "a short description");
	}
	public void actionPerformed(ActionEvent e) {
		System.out.println("Custom action performed");
	}
}

⌨️ 快捷键说明

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