package test;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.Container;
import java.awt.FlowLayout;
public class ToolTipDemo extends JFrame{
JButton[] button = new JButton[3];
public ToolTipDemo(String title){
super(title);
Container contentPane = this.getContentPane();
contentPane.setLayout(new FlowLayout());
for(int i=0;i<button.length;i++){
button[i] = new JButton("第" + (i+1) + "個按鈕");
button[i].setToolTipText("您想點擊第" + (i+1) + "個按鈕");
contentPane.add(button[i]);
}
this.pack();
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args){
new ToolTipDemo("按鈕提示信息測試");
}
}
當鼠標指向某個按鈕時,會提示您想點擊第X個按鈕
需要注意的是JFrame默認的布局方式是BorderLayout,如果對布局方式不做設置,第三個按鈕會在中間位置以最大形式顯示,覆蓋掉前兩個按鈕