我做了一个用户的jTable。我想做的是,在行的点击事件上显示光标附近的用户照片。(我的意思是我想显示类似工具提示的东西)这可能吗?我该怎么做?像这样。但我的应用程序是桌面应用程序 http://rndnext.blogspot.com/2009/02/jquery-ajax-tooltip.html
问问题
677 次
1 回答
2
1)谷歌。2) http://www.roseindia.net/java/example/java/swing/ImageToolTip.shtml
import javax.swing.*;
import javax.swing.text.html.*;
import java.awt.*;
import java.awt.event.*;
public class ImageToolTip {
public static void main(String[] args) {
JFrame frame = new JFrame("Image Tool Tip Frame");
JComponent button = new JButton("Cut");
String tooltiptext = "<html>" + "This is the " + "<img src=\"file:cut.gif\">" + " tool tip text." + "</html>";
button.setToolTipText(tooltiptext);
JPanel panel = new JPanel();
panel.add(button);
frame.add(panel, BorderLayout.CENTER);
frame.setSize(400, 400);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
于 2012-04-12T17:48:58.373 回答