更改外观后是否可以保留按钮的边框? (Java Swing)

时间:2015-02-23 09:26:35

标签: java swing button border look-and-feel

我目前正在开展一个允许用户选择外观的项目。 但是,当用户选择另一个外观并将其更改回原始的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中,但是有可能重新出现"将外观更改回默认值后?

1 个答案:

答案 0 :(得分:2)

上次我检查过,PLAF中有各种各样的错误导致了这些类型的奇怪行为。特别是从MetaL LAF改变时(但是很好的与Nimbus有关)。

获取应用程序的唯一可靠方式。改变PLAF是:

  • 序列化用户对新PLAF的选择(即作为完全限定类名的String)。
  • 启动一个调用main(String[])的新进程,该进程将检查要使用的新PLAF的序列化字符串,并使用它。
  • (可能将当前GUI的状态传递给新GUI。)
  • 关闭当前的GUI。

正如你所看到的那样,为了获得'绝对坚如磐石的可靠'PLAF变化而非常麻烦。