0

有没有办法定义一个全局样式表,用于JToolTip整个应用程序中的所有 my s?如果没有,我如何为我只知道它是一个摆动组件(JComponent)的单个组件的工具提示定义样式表?

4

1 回答 1

2

如果要更改工具提示的颜色,有几个带有键的外观默认属性:

ToolTip.background
ToolTip.backgroundInactive
ToolTip.border
ToolTip.borderInactive
ToolTip.font
ToolTip.foreground
ToolTip.foregroundInactive

例如,为前景设置新颜色

UIManager.put("ToolTip.foreground",java.awt.Color.red);

例如,在一个应用程序中,我有这些默认值

ToolTip.background   =>     javax.swing.plaf.ColorUIResource[r=184,g=207,b=229]
ToolTip.backgroundInactive   =>     javax.swing.plaf.ColorUIResource[r=238,g=238,b=238]
ToolTip.border   =>     javax.swing.plaf.BorderUIResource$LineBorderUIResource@da18ac
ToolTip.borderInactive   =>     javax.swing.plaf.BorderUIResource$LineBorderUIResource@8a0544
ToolTip.font     =>     javax.swing.plaf.FontUIResource[family=Dialog,name=Dialog,style=plain,size=12]
ToolTip.foreground   =>     sun.swing.PrintColorUIResource[r=51,g=51,b=51]
ToolTip.foregroundInactive   =>     javax.swing.plaf.ColorUIResource[r=122,g=138,b=153]
于 2012-05-02T21:16:03.937 回答