2012-01-11 86 views
2

我試圖添加一個帶有「X」按鈕的標題欄到應用程序。我已閱讀關於Look &感受Java,但我不知道我缺少什麼(我剛剛創建了一個桌面應用程序,添加了一個JFrame表單,並拖動了一個表格 - 沒有任何邏輯)。將標題欄添加到JFrame(Linux)

/* 
* To change this template, choose Tools | Templates 
* and open the template in the editor. 
*/ 
package javaapplication14; 

import framez.NewJFrame; 

/** 
* 
* @author uluroki 
*/ 
public class JavaApplication14 { 

/** 
* @param args the command line arguments 
*/ 
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 { 
     for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { 
      if ("Nimbus".equals(info.getName())) { 
       javax.swing.UIManager.setLookAndFeel(info.getClassName()); 
       break; 
      } 
     } 
    } catch (ClassNotFoundException ex) { 
     java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (InstantiationException ex) { 
     java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (IllegalAccessException ex) { 
     java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (javax.swing.UnsupportedLookAndFeelException ex) { 
     java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } 
    //</editor-fold> 

    /* Create and display the form */ 
    java.awt.EventQueue.invokeLater(new Runnable() { 

     @Override 
     public void run() { 
      NewJFrame myframe = new NewJFrame();     
      myframe.setVisible(true); 
     } 
    }); 
    } 
} 


/* 
* To change this template, choose Tools | Templates 
* and open the template in the editor. 
*/ 

/* 
* NewJFrame.java 
* 
* Created on 2012-01-11, 21:13:30 
*/ 
package framez; 

/** 
* 
* @author uluroki 
*/ 
public class NewJFrame extends javax.swing.JFrame { 

/** Creates new form NewJFrame */ 
public NewJFrame() { 
    initComponents(); 
} 

/** This method is called from within the constructor to 
* initialize the form. 
* WARNING: Do NOT modify this code. The content of this method is 
* always regenerated by the Form Editor. 
*/ 
@SuppressWarnings("unchecked") 
// <editor-fold defaultstate="collapsed" desc="Generated Code"> 
private void initComponents() { 

    jScrollPane1 = new javax.swing.JScrollPane(); 
    jTable1 = new javax.swing.JTable(); 

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); 

    jTable1.setModel(new javax.swing.table.DefaultTableModel(
     new Object [][] { 
      {null, null, null, null}, 
      {null, null, null, null}, 
      {null, null, null, null}, 
      {null, null, null, null} 
     }, 
     new String [] { 
      "Title 1", "Title 2", "Title 3", "Title 4" 
     } 
    )); 
    jScrollPane1.setViewportView(jTable1); 

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); 
    getContentPane().setLayout(layout); 
    layout.setHorizontalGroup(
     layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 
     .addGroup(layout.createSequentialGroup() 
      .addContainerGap() 
      .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 375, javax.swing.GroupLayout.PREFERRED_SIZE) 
      .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) 
    ); 
    layout.setVerticalGroup(
     layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 
     .addGroup(layout.createSequentialGroup() 
      .addContainerGap() 
      .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 275, javax.swing.GroupLayout.PREFERRED_SIZE) 
      .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) 
    ); 

    pack(); 
}// </editor-fold> 

// Variables declaration - do not modify 
private javax.swing.JScrollPane jScrollPane1; 
private javax.swing.JTable jTable1; 
// End of variables declaration 
} 

這是NetBeans生成的內容。

+3

請按[sscce](http://www.sscce.org)更改按鈕數量(對於Top-Level Containers)。默認情況下,'JFrame'實例將有一個標題欄,除非['setUndecorated(true)'](http://docs.oracle.com/javase/6/docs/api/java/awt/Frame.html# setUndecorated%28boolean%29)在*實現*之前被調用。 – mre 2012-01-11 20:12:45

+1

對不起。編輯的問題。 – uluroki 2012-01-11 20:39:19

+3

hmmm本機操作系統相關問題例如http://www.pendrivelinux.com/ubuntu-desktop-effects-fixing-the-missing-titlebar/ – mKorbel 2012-01-11 21:27:25

回答

2
I just created a Desktop Application, added a JFrame Form, 
and dragged'n'dropped some buttons - no logic yet 

有這些標準Top-Level Containers

JFrame - >已經有三個按鈕最小化,最大化和關閉

JDialog - >已接近只有一個按鈕

JWindow - >默認沒有裝飾,沒有任何按鈕

基本上沒有任何按鈕更改另一個Look & Feel