I want to draw a button border like this with gradient color at border of rounded button (the red one):
Does anybody know some Java class that can do this?
I want to draw a button border like this with gradient color at border of rounded button (the red one):
Does anybody know some Java class that can do this?
You can create your custom Button class by extending JButton. Then you have to rewrite the paintComponent(Grapgics g) mehtod to draw your button like you want.