Cardozz 45 Share Posted July 6, 2016 Nevermind, got the answer. Not possible unless i extend the button class and create my own button. Instead i morphed the whole button into a JLabel and added listeners to that to avoid any unnecessary classes . Link to comment Share on other sites More sharing options...
Notorious 341 Share Posted July 11, 2016 Are you looking for something similar to the button with no color when clicked? Like: If so then just do: JButton button = new JButton("No Color"); button.setContentAreaFilled(false); //Takes away color button.setFocusable(false); //Takes away the focus rectangle around the text Link to comment Share on other sites More sharing options...
Cardozz 45 Author Share Posted July 12, 2016 Are you looking for something similar to the button with no color when clicked? Like: If so then just do: JButton button = new JButton("No Color"); button.setContentAreaFilled(false); //Takes away color button.setFocusable(false); //Takes away the focus rectangle around the text Yes noto, thanks for that. But i was filling in the button with a color so that didn't work. I eventually ended up making a button myself using a JLabel filled in with a color and add mouselisteners to it Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.