Split a complex GUI window into several files in Netbeans
- by Hectoret
After building the application GUI, I realised it was a little bit too complex and I could reuse some of the Swing components. The result is a complex class with many anidated JPanels.
My question is: does Netbeans provide a way to split a JPanel and its children components into a different class?
If I do it by hand, will the GUI designer still work?
Thanks!