How to bind a form file to a superclass?
已回答
Hey guys,
I'm new to the IntelliJ GUI Designer and I tried much up to now. But a question to which I cannot find an answer is, how to bind a form file to a JPanel which is a superclass? So if we have:
public class Test extends JPanel {
...
}
I want to bind the form to the "JPanel" which is the superclass of the "Test"-class. How to do that?
请先登录再写评论。
You can bind the form only to your own project classes, not to JDK classes. What problem are you trying to solve? What do you expect from binding a form to JPanel?