所以我有JButton
当你将鼠标移到它上面时,会出现使用HTML的下划线。但是当添加下划线时,它会使JButton
略大于它应该的位置。
我尝试了一些像
这样的事情 button.setMaximumSize(button.getPreferredSize());
在添加下划线之前,但我无法修复它。因此,无论是否存在下划线,我如何确保高度保持不变。
我在下面有一个示例类来演示问题(我无法让它具有完全相同的严重性,但它足以显示问题)。
SAMPLE CLASS
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.plaf.metal.MetalButtonUI;
public class UnderlineSample extends JFrame {
public UnderlineSample() {
super("Underline Sample");
setLayout(new GridBagLayout());
setDefaultCloseOperation(EXIT_ON_CLOSE);
setPreferredSize(new Dimension(300, 150));
String text =
"<html>"
+ "<p style = 'border-bottom: 1px solid rgba(0,0,0,0,0); box-sizing: border-box;'>"
+ "<span style = 'color: rgb(0, 0, 255); font-weight: bold;'>"
+ "Sample"
+ "</span> "
+ " underline button"
+ "</p>"
+ "</html>";
JButton button = new JButton(text);
button.setFont(new Font("", Font.PLAIN, 18));
button.setFocusable(false);
button.setBackground(Color.LIGHT_GRAY);
button.setForeground(Color.BLACK);
button.setUI(new MetalButtonUI());
button.setHorizontalAlignment(SwingConstants.LEFT);
button.setAlignmentX(LEFT_ALIGNMENT);
button.addMouseListener(new MouseAdapter() {
public void mouseEntered(MouseEvent e) {
String s =
"<html>"
+ "<p style = 'border-bottom: 1px solid black; box-sizing: border-box;'>"
+ "<span style = 'color: rgb(0, 0, 255); font-weight: bold;'>"
+ "Sample"
+ "</span> "
+ " underline button"
+ "</p>"
+ "</html>";
button.setText(s);
}
public void mouseExited(MouseEvent e) {
String s =
"<html>"
+ "<p style = 'border-bottom: 1px solid rgba(0,0,0,0,0); box-sizing: border-box;'>"
+ "<span style = 'color: rgb(0, 0, 255); font-weight: bold;'>"
+ "Sample"
+ "</span> "
+ " underline button"
+ "</p>"
+ "</html>";
button.setText(s);
}
});
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = 0; gbc.gridy = 0; gbc.anchor = GridBagConstraints.WEST;
gbc.weightx = 1; gbc.fill = GridBagConstraints.HORIZONTAL; gbc.ipady = 10;
gbc.insets = new Insets(0, 10, 5, 10);
add(button, gbc);
pack();
setVisible(true);
}
public static void main(String[] args) {
new UnderlineSample();
}
}
答案 0 :(得分:2)
在Swing中渲染rgba
并不支持所有css样式。点rgba
中的情况不起作用(您可以通过使用rgba
添加您期望呈现的彩色边框而不是带有alpha 0的彩色边框并查看结果来自行测试。
换句话说,MouseListener.mouseEntered
的边框未呈现,因此当您使用rgb
添加可渲染边框底部时,大小会发生变化。您可以使用与背景颜色相同颜色的<p style = 'border-bottom: 1px solid rgb(200,200,200); box-sizing: border-box;'>
来欺骗它。类似的东西:
{{1}}