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

📄 test.java

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

public class Test extends JApplet {
	private JButton button = new JButton("show dialog ...");

	private String title = "Animal Selection Dialog";
	private String message = "Select your favorite animal:";
	private String[] selectionValues = {
		"dog", "cat", "mouse", "goat", "koala", "rabbit",
	};

	public Test() {
		Container contentPane = getContentPane();

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

		button.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				String s = (String)JOptionPane.showInputDialog(
					Test.this, // parentComponent
					message, // message
					title, // title
					JOptionPane.QUESTION_MESSAGE, // messageType
					null, // icon
					selectionValues, // selectionValues
					selectionValues[3]); // initialValue

				if(s == null)
					showStatus("cancel button activated");
				else
					showStatus(s);
			}
		});
	}
}

⌨️ 快捷键说明

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