我注意到在 Netbeans 中,您可以通过各种屏幕(Windows、Windows Classic、Nimbus 等)预览您的 GUI。我很确定 Netbeans 中的默认值是 Metal,但我想将其更改为 Windows Classic。这可能吗?
还想知道是否可以将边缘更改为直线而不是圆形。
干杯
我注意到在 Netbeans 中,您可以通过各种屏幕(Windows、Windows Classic、Nimbus 等)预览您的 GUI。我很确定 Netbeans 中的默认值是 Metal,但我想将其更改为 Windows Classic。这可能吗?
还想知道是否可以将边缘更改为直线而不是圆形。
干杯
应用程序的视觉风格被称为“外观”。 查看有关它们的 Java 教程
从教程:
try {
// Set System L&F
UIManager.setLookAndFeel(
UIManager.getSystemLookAndFeelClassName());
}
catch (UnsupportedLookAndFeelException e) {
// handle exception
}
catch (ClassNotFoundException e) {
// handle exception
}
catch (InstantiationException e) {
// handle exception
}
catch (IllegalAccessException e) {
// handle exception
}