Design Tab is Blank in Eclipse IDE

Viewed 466

I recently bought Macbook with an M1 processor for programming. I have installed Eclipse IDE for JAVA Programming. After Installing Window BUilder and the required Softwares from Eclipse Market place for java GUI, My design Tab is still blank. The same method worked on my Windows desktop but not working Here What should I do? So it works

https://i.stack.imgur.com/tA4JF.jpg

2 Answers

Either your Java Class File does not extend a JFrame, or you do not have a JComponent. To fix this, make sure that your Java Class File deals with JFram, JPanel, or JComponent. To make such class, create a JComponent class using this.

enter image description here

Otherwise, reinstall your Windows Builder.

Related