Application Window in Eclipse with WindowBuilder

I'm relatively new to Java programming, I use Eclipse with WindowBuilder, but I don’t understand what is the difference between using a JFrame or application window in Swing Designer. Can anyone explain this?

+4
source share
1 answer

Well, there aren't many differences between the two, because the only thing unique to the JFrame Wizard is that it voluntarily subclasses the JFrame. On the other hand, a subclass of the object that the JFrame has is automatically created in the application window wizard from Swing Designer. The JFrame Wizard is always more usable, in my opinion.

0
source

Source: https://habr.com/ru/post/1411584/


All Articles