2

有没有办法像在 Netbeans 预览设计屏幕中一样显示程序:

预览GUI

而不像默认的运行程序GUI:

在此处输入图像描述

?

4

1 回答 1

5

您是否希望设置“外观和感觉”

这是链接中的代码:

// 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) {
}
于 2012-08-22T20:01:24.753 回答