- Swing 程式設計示例
- 示例-主頁
- 示例-環境設定
- 示例-邊框
- 示例-按鈕
- 示例-複選框
- 示例-組合框
- 示例-顏色選擇器
- 示例-對話方塊
- 示例-編輯器窗格
- 示例-檔案選擇器
- 示例-帶格式文字欄位
- 示例-框架
- 示例-列表
- 示例-佈局
- 示例-選單
- 示例-密碼欄位
- 示例-進度條
- 示例-滾動窗格
- 示例-滑塊
- 示例-微調器
- 示例-表格
- 示例-工具欄
- 示例-樹
- 有用的 Swing 資源
- Swing-快速指南
- Swing-有用的資源
- Swing-討論
Swing 示例-使用具有圖示和文字的按鈕
以下示例展示如何在 Java Swing 應用程式中建立具有圖示和文字的按鈕。
我們使用以下 API。
JButton-建立標準按鈕。
ImageIcon-建立影像圖示。
JButton(ImageIcon)-使用圖示建立按鈕。
JButton.setText()-在按鈕中設定文字。
示例
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import javax.swing.AbstractButton;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
public class SwingTester {
public static void main(String[] args) {
createWindow();
}
private static void createWindow() {
JFrame frame = new JFrame("Swing Tester");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
createUI(frame);
frame.setSize(560, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static void createUI(final JFrame frame){
JPanel panel = new JPanel();
LayoutManager layout = new FlowLayout();
panel.setLayout(layout);
ImageIcon arrowIcon = null;
java.net.URL imgURL = SwingTester.class.getResource("arrow.jpg");
if (imgURL != null) {
arrowIcon = new ImageIcon(imgURL);
} else {
JOptionPane.showMessageDialog(frame, "Icon image not found.");
}
JButton iconButton = new JButton(arrowIcon);
iconButton.setText("Next");
iconButton.setToolTipText("Move Ahead");
iconButton.setVerticalTextPosition(AbstractButton.CENTER);
iconButton.setHorizontalTextPosition(AbstractButton.LEADING);
iconButton.setMnemonic(KeyEvent.VK_I);
iconButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(frame, "Icon Button clicked.");
}
});
panel.add(iconButton);
frame.getContentPane().add(panel, BorderLayout.CENTER);
}
}
輸出
swingexamples_buttons.htm
廣告