我正在使用NetBeans编写Java项目。 当我告诉NetBeans打开表单作为主类时,它会打开它:
http://dl.dropbox.com/u/12868212/Good.jpg
但我想使用我编写的特定主类,它调用前面提到的形式的约束器,我得到:
http://dl.dropbox.com/u/12868212/Bad.jpg
构造函数代码:
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//Updating Global Variables Class:
GlobalVariables.Update_Global_Variables_From_Configuration_XML();
Form_StudentPresentation form_StudentPresentation =
new Form_StudentPresentation();
form_StudentPresentation.setVisible(true);
}
有人能告诉我什么是错的吗? 如何在main中调用约束器,使表单看起来像Good.jpg?
答案 0 :(得分:1)
我认为使用Netbeans创建的表单/框架默认情况下具有外观和感觉。
检查是否在您的课程内或表格内的主要内容中调用了lookAndFeel设置器。
您还可以检查项目设置中是否有任何外观规格作为运行参数。