Skip to content

Instantly share code, notes, and snippets.

@kleinlennart
Created September 30, 2017 16:26
Show Gist options
  • Save kleinlennart/a78ed98c93d1646069d16983eadfdc61 to your computer and use it in GitHub Desktop.
Save kleinlennart/a78ed98c93d1646069d16983eadfdc61 to your computer and use it in GitHub Desktop.
Template Settings to make a JButton transparent
//Transparent button
button.setForeground(Color.WHITE);
button.setHorizontalAlignment(SwingConstants.RIGHT);
button.setToolTipText("Enter Shop");
button.setOpaque(false);
button.setContentAreaFilled(false);
button.setBorderPainted(false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment