IntelliJ IDEA GUI构建器——没有生成Java代码

时间:2021-08-24 20:23:45

I have designed my GUI form in the IntelliJ IDEA GUI designer, and selected the radio button in Project Settings → GUI Designer to generate source code instead of .class files, but my .java file with code looks like this:

我设计GUI形式在IntelliJ IDEA GUI设计师,在项目设置,选择单选按钮→GUI设计师源代码生成. class文件,但我的. java文件,代码是这样的:

public class PovRayEmptyProjectWizardPanelVisual {
    private JTextField textField1;
    private JTextField textField2;
    private JTextField textField3;
    private JButton button1;
}

That’s it – no code creating the GUI was generated. How do I manually trigger such code generation, so that I can compile the resulting .java file with Maven?

就是这样——没有生成创建GUI的代码。如何手动触发这样的代码生成,以便使用Maven编译生成的.java文件?

1 个解决方案

#1


14  

Source code is generated on Build | Make. If you build externally, IDEA GUI forms can be compiled from Ant (javac2 task provided with IDEA) or Maven.

源代码是在Build | Make上生成的。如果构建外部,可以从Ant(提供IDEA的javac2任务)或Maven编译IDEA GUI表单。

#1


14  

Source code is generated on Build | Make. If you build externally, IDEA GUI forms can be compiled from Ant (javac2 task provided with IDEA) or Maven.

源代码是在Build | Make上生成的。如果构建外部,可以从Ant(提供IDEA的javac2任务)或Maven编译IDEA GUI表单。