我正在尝试使用悬停时的文字提示创建一个简单的JFrame。 JFrame看起来似乎很好,然而,文本提示永远不会弹出。任何人都可以帮我解决可能出现的问题吗?我没有收到任何错误。
主类
import javax.swing.JFrame;
public class PracticeMain {
public static void main(String args[]){
Sub obj = new Sub();
obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
obj.setSize(275,150);
obj.setVisible(true);
}
}
子类
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Sub extends JFrame{
private JLabel item1;
public Sub(){
//adds title
super("MY TITLE");
//gives us the default layout
setLayout(new FlowLayout());
item1 = new JLabel("This is a sentence");
item1.setToolTipText("help tip");
add(item1);
}
}
答案 0 :(得分:2)
好吧,我编译了它,工具提示文字出现了。你应该等待大约两秒钟才能显示出来。