我目前正在开展一个允许用户选择外观的项目。 但是,当用户选择另一个外观并将其更改回原始的CrossPlatformLookAndFeel时,按钮的边框将消失。
代码:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
public class SSCCE {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
final JFrame frame = new JFrame();
final JButton button = new JButton("Button");
button.setBorder(LineBorder.createBlackLineBorder());
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ev) {
try{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
SwingUtilities.updateComponentTreeUI(frame);
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
SwingUtilities.updateComponentTreeUI(frame);
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
});
//
frame.setLayout(new FlowLayout(FlowLayout.CENTER));
frame.add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
如您所见,单击按钮后边框消失。
所以问题是:改变外观后可以保留边框吗?我知道边框不会出现在WindowsLookAndFeel中,但是有可能重新出现"将外观更改回默认值后?
答案 0 :(得分:2)
上次我检查过,PLAF中有各种各样的错误导致了这些类型的奇怪行为。特别是从MetaL LAF改变时(但是很好的与Nimbus有关)。
获取应用程序的唯一可靠方式。改变PLAF是:
String
)。main(String[])
的新进程,该进程将检查要使用的新PLAF的序列化字符串,并使用它。正如你所看到的那样,为了获得'绝对坚如磐石的可靠'PLAF变化而非常麻烦。