当前位置: 代码迷 >> J2SE >> JButton的setToolTipText不起作用,咋回事
  详细解决方案

JButton的setToolTipText不起作用,咋回事

热度:82   发布时间:2016-04-23 20:00:56.0
JButton的setToolTipText不起作用,怎么回事?
代码如下:
JButton firstButton = new JButton();
firstButton.setIcon(new ImageIcon("111.png"));
firstButton.setRolloverIcon(new ImageIcon("222.png"));
firstButton.setPressedIcon(new ImageIcon("333.png"));
firstButton.setContentAreaFilled(false);
firstButton.setBorderPainted(false);
firstButton.setFocusable(false);
((ImageIcon)firstButton.getIcon()).setDescription("111");
firstButton.addActionListener(new ButtonListener());
firstButton.setToolTipText("F1");

运行时,把鼠标移到该按钮上面,并没有tips弹出。
请问,这是怎么回事呢?
------解决思路----------------------
firstButton.setFocusable(false);

按钮不能获取到光标资源
  相关解决方案