-1
我使用BalloonTip在我的代碼,我需要這樣的構造:字符串的JComponent
public TablecellBalloonTip(JTable table, JComponent component, int row, int column, BalloonTipStyle style, Orientation alignment, AttachLocation attachLocation, int horizontalOffset, int verticalOffset, boolean useCloseButton) {
super(table, component, table.getCellRect(row, column, true), style, alignment, attachLocation, horizontalOffset, verticalOffset, useCloseButton);
setup(table, row, column);
}
在舊版本中,第二個參數是一個字符串,它的工作,但現在不是了。我需要一個字符串到JComponent然後,但我不知道如何。
http://download.oracle.com/javase/tutorial/uiswing/components/table.html#editrender and http://www.java2s.com/Code/Java/Swing-JFC/Table-Column.htm – mKorbel
再次:在跳入大海之前學習游泳的基本知識;-)你似乎對你在做什麼沒有絲毫的想法 - 去閱讀snoracles swing教程! – kleopatra
提示:ballontip項目來代碼示例... – kleopatra