我创建了一个带有HTML格式文本的工具提示,这很好用,但边框和文本之间没有空格。如何设置Insets或EmptyBorder?
答案 0 :(得分:3)
发现这篇关于如何change properties of Java ToolTip (background, border, etc.)的文章。它侧重于颜色和边框样式,但也许您可以将此方法用于边距(插图)。
答案 1 :(得分:1)
这对我有用:
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JToolTip;
import javax.swing.border.EmptyBorder;
public class tooltipinsets {
public static void main(String[] args) {
JFrame window = new JFrame();
JLabel lbl = new JLabel("Test") {
@Override
public JToolTip createToolTip() {
return createCustomToolTip();
}
};
window.add(lbl);
lbl.setToolTipText("<html><b><i>This is the tooltip</i></b></html>");
window.pack();
window.setLocationRelativeTo(null);
window.setVisible(true);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static JToolTip createCustomToolTip() {
JToolTip tip = new JToolTip();
tip.setBorder(new EmptyBorder(10, 10, 10, 10));
return tip;
}
}
答案 2 :(得分:0)
我已阅读此article并认为它对您有所帮助。它建议设置保证金来自Component
和类似的功能......