Badr
Badr

Reputation: 33

GUI in Java Netbeans

I am learning to put GUI in Java, now what I want to ask is, should I learn to put the GUI code by myself or should I go for drag and drop method? Which one is preferred and good for me?

Upvotes: 2

Views: 125

Answers (1)

Adi219
Adi219

Reputation: 4814

As a beginner, it is recommended to experiment with the GUI by dragging and dropping and inspect the code that is produced.

As an expert, it a much more common practice to code the GUI as you can control many finer details using code instead of manual dragging and dropping.

Upvotes: 1

Related Questions