我正在创建一个自定义按钮,但在大多数内置PLAF上使它看起来正确时遇到了麻烦。
这是我的代码
public MyButton(String text, Icon icon) {
if (icon == null) icon = createDefaultIcon();
mainButton = new JButton(text);
popupButton = new JButton(icon);
removeBorder(mainButton);
removeBorder(popupButton);
setModel(new DefaultButtonModel());
setBorder(UIManager.getBorder("Button.border"));
int popupButtonWidth = popupButton.getPreferredSize().width;
int popupButtonHeight = mainButton.getPreferredSize().height;
Dimension popupButtonSize = new Dimension(popupButtonWidth, popupButtonHeight);
popupButton.setMinimumSize(popupButtonSize);
popupButton.setPreferredSize(popupButtonSize);
popupButton.setMaximumSize(popupButtonSize);
setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
add(mainButton);
add(new JSeparator(VERTICAL));
add(popupButton);
}
private void removeBorder(JButton button) {
Border border = button.getBorder();
if (border instanceof CompoundBorder) {
button.setBorder(((CompoundBorder) border).getInsideBorder());
} else {
button.setBorder(BorderFactory.createEmptyBorder());
}
}
这是计算机上安装的PLAF中按钮的外观
金属
雨云
CDE /母题
Mac OS X
CDE / Motif是唯一可以正常运行的工具。我查看了某些ButtonUI的来源,看来它们可以忽略背景色和边框。不幸的是,背景色和边框是我需要设置的。如何获得自定义按钮以正确支持内置PLAF?
编辑:
根据要求,这是我用来生成图像的代码
public class MyButtonDemo implements Runnable {
public void run() {
// Change the array index to get a different PLAF
try {
UIManager.setLookAndFeel(UIManager.getInstalledLookAndFeels()[0].getClassName());
} catch (Exception ignored) { }
JFrame frame = new JFrame();
frame.getContentPane().setLayout(new FlowLayout());
frame.getContentPane().add(new MyButton("My Button", null);
frame.getContentPane().add(new JButton("Normal Button"));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new MyButtonDemo());
}
}
最佳答案
欢迎来到可插拔外观的奇妙世界。我能想到的,唯一的真正选择就是提供。每个平台的UI委托或查看Syththetic UI
关于java - 如何将内置的PLAF与自定义组件一起使用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11699931/