1

少し助けが必要です。私は Java L&F を試していますが、Netbeans で実際にルック アンド フィールを変更する方法がまったくわかりません。私は Synthetica Blue Ice L&F を使用しており、NetBeans に Nimbus LF コーディングがあるコーディングでは、Nimbus セットをコメントアウトし、これを挿入しました (元のコーディングからの抜粋):

import de.javasoft.plaf.synthetica.SyntheticaBlueIceLookAndFeel;
import javax.swing.*;
import java.awt.*;

public MainMenu() {
          initComponents();
          try {
               UIManager.addAuxiliaryLookAndFeel(new SyntheticaBlueIceLookAndFeel());
               UIManager.setLookAndFeel(new SyntheticaBlueIceLookAndFeel());
          } catch (Exception e) {
               e.printStackTrace();
          }
     }

NetBeans が独自のルック アンド フィール コーディングを挿入する場所をコメント アウトすると、次のようになります。

public static void main(String args[]) {
          /* Set the Nimbus look and feel */
          //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
          /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
           * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
           */

          try {
               UIManager.addAuxiliaryLookAndFeel(new SyntheticaBlueIceLookAndFeel());
               UIManager.setLookAndFeel(new SyntheticaBlueIceLookAndFeel());
          } catch (Exception e) {
               e.printStackTrace();
          }

//          try {
//               for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
//                    JOptionPane.showMessageDialog(null, info.getClassName());
//                    if ("Nimbus".equals(info.getName())) {
//                         javax.swing.UIManager.setLookAndFeel(info.getClassName());
//                         break;
//                    }
//               }
//          } catch (ClassNotFoundException ex) {
//               java.util.logging.Logger.getLogger(MainMenu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
//          } catch (InstantiationException ex) {
//               java.util.logging.Logger.getLogger(MainMenu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
//          } catch (IllegalAccessException ex) {
//               java.util.logging.Logger.getLogger(MainMenu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
//          } catch (javax.swing.UnsupportedLookAndFeelException ex) {
//               java.util.logging.Logger.getLogger(MainMenu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
//          }
//          }
//          catch (Exception e){
//               java.util.logging.Logger.getLogger(MainMenu.class.getName()).log(java.util.logging.Level.SEVERE, null, e);
//          }

          //</editor-fold>

          /* Create and display the form */
          java.awt.EventQueue.invokeLater(new Runnable() {
               public void run() {
                    new MainMenu().setVisible(true);
               }
          });
     }

それでも、アプリケーションを実行すると、デフォルトの LF と同じように見えます。インストールした LF を確認するスクリプトを実行したところ、次のようになりました。

javax.swing.plaf.metal.MetalLookAndFeel
javax.swing.plaf.nimbus.NimbusLookAndFeel
com.sun.java.swing.plaf.motif.MotifLookAndFeel
com.sun.java.swing.plaf.windows.WindowsLookAndFeel
com.sun.java.swing.plaf.windows.WindowsClassicLookAndFeel

デザイン パレットに [ルック アンド フィール] タブがあることに気付きました。Synthetica がそこに表示されないのはなぜですか?

4

1 に答える 1

1

使用する前に1を呼び出す必要があるようです。UIManager.addAuxiliaryLookAndFeel(LookAndFeel)

  1. LookAndFeel補助ルック アンド フィールのリストに を追加します。補助ルック アンド フィールは、多重化 UI を作成するときLookAndFeelにデフォルト クラスに加えて、コンポーネント インスタンスの他のどのクラスを使用するかを多重化ルック アンド フィールに伝えます。LookAndFeelこの変更は、新しい UI クラスが作成されたとき、またはコンポーネント インスタンスでデフォルトのルック アンド フィールが変更されたときにのみ有効になります。

于 2013-10-19T15:43:02.367 に答える