2012-08-22 57 views
2

有沒有辦法到程序中顯示像Netbeans的預覽設計屏幕:編程中使用NetBeans的GUI

previewGUI

和不喜歡默認的運行程序GUI:

enter image description here

+1

使用Alt +打印屏幕只捕獲活動窗口。另請參閱[如何創建屏幕截圖?](http://meta.stackexchange.com/questions/99734/how-do-i-create-a-screenshot-to-illustrate-a-post)(關於製作技巧*很棒*截圖)。還要注意它拼寫爲'Java'而不是'JAVA'。 –

回答

5

您是否想要設置"look and feel"

下面是來自鏈接代碼:

// Get the native look and feel class name 
String nativeLF = UIManager.getSystemLookAndFeelClassName(); 

// Install the look and feel 
try { 
UIManager.setLookAndFeel(nativeLF); 
} catch (InstantiationException e) { 
} catch (ClassNotFoundException e) { 
} catch (UnsupportedLookAndFeelException e) { 
} catch (IllegalAccessException e) { 
} 
+0

非常感謝。對此並不熟悉。 – Onca

+0

非常歡迎! – Jonatan