1
當我在屏幕按鈕附近有按鈕時,工具提示出現在鼠標下方。點擊會使工具提示消失,而不是點擊按鈕。工具提示竊取鼠標事件
public static void main(String[] args) {
JFrame frame = new JFrame("Test");
JButton button = new JButton("Test");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("action performed");
}
});
button.setToolTipText("Sample tooltip text");
frame.add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.pack();
}
任何想法如何確保按鈕接收在這種情況下,點擊?