- 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
广告