我正在尝试添加JButton
并将工具提示设置为JPanel
上的按钮。它基本上就像这样
public class CustomPanel extends JPanel{
public CustomPanel(){
..
initGraphics();
...
}
public void initGraphics(){
JButton button1 = new JButton("button1");
JButton button2 = new Jbutton("button2");
button1.setToolTipText("hello1");
add(button1);
add(button2);
}
当我运行程序并将鼠标移到button1上时,UI会冻结3秒左右,并且没有显示工具提示。
有人可以告诉我我错过了什么吗?