当前位置: 代码迷 >> J2SE >> Swing中JToolBar的tooltip有关问题
  详细解决方案

Swing中JToolBar的tooltip有关问题

热度:159   发布时间:2016-04-24 01:43:00.0
Swing中JToolBar的tooltip问题
[code=Java][/code] JToolBar toolbar = new JToolBar();
toolbar.setFloatable(false);

// Insert
URL insertUrl = getClass().getClassLoader().getResource(
"org/jgraph/example/resources/insert.gif");
ImageIcon insertIcon = new ImageIcon(insertUrl);
toolbar.add(new AbstractAction("", insertIcon) {
/**

*/
private static final long serialVersionUID = -6458545622185018671L;

public void actionPerformed(ActionEvent e) {
insert(new Point(10, 10));
}
});



如上代码中,如何为工具栏的项加入tooltip???

------解决方案--------------------
读一读Jgraph的用户手册吧