-1

我正在使用 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?

4

1 回答 1

1

我认为使用 Netbeans 创建的表单/框架默认具有外观代码。

检查 lookAndFeel 设置器是否在您的类中或在您的表单中的 main 中被调用。

您还可以检查是否有任何外观规范作为项目设置中的运行参数。

于 2013-01-10T19:49:28.363 回答