我正在尝试创建一个带有悬停文本提示的简单 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);
}
}