到目前为止,我有这个
public static void main(String[] args) { try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); UIManager.getBorder("design");//change look and feel here? } catch (Exception e) { JOptionPane.showMessageDialog(null, "Nimbus isn't available"); } javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { design GUI = new design(); GUI.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); GUI.setVisible(true); } }); }
我正在尝试使主外观看起来像雨云,但是将标题边框更改为Windows。
我的边界是这样的:
contentPanel.setBorder(new TitledBorder("Downloader"));
有可能吗?如果是的话,有人可以指出我在哪里看?我现在很困惑。:\
谢谢。
我做完了 您必须创建UI的各个部分,然后调用UIManager.setLookAndFeel()来更改外观,然后创建其他部分。更像是骇客。