Rendition
Rendition

Reputation: 77

Change Look and Feel of JFrame?

How would I go about changing the Look and Feel of a JFrame and Swing components to custom pictures and what not? Is there a set of methods and API's or do I need to just make a custom JFrame that allows me to customize my JFrame further?

I'm trying to get something that looks like the World of Warcraft launcher or League of Legends launcher( best examples i've seen with custom everything xD). I'm pretty new to GUIs.

Upvotes: 0

Views: 1334

Answers (1)

01es
01es

Reputation: 5410

Not exactly an answer to the question, but since you're just staring with Java GUI, I'd recommend diving right into JavaFX -- a modern Java UI toolkit.

Please be sure to start with JavaFX 2.x -- not JavaFX 1.x, which is basically deprecated.

Upvotes: 1

Related Questions