I am able to make JFrame totally transparent and the JButton is partly transparent just fine until I move my mouse on the button ( do not click ) and move the mouse off from the button ( MouseExited called via MouseListener ). What happens is that the background of the JButton is drawn again, so after couple of mouse movements on and off the button the button is totally opaque.
public class ButtonExample extends JWindow
{
public ButtonExample( )
{
JButton But = new JButton( "Testing" );
But.setBackground( new Color( 0, 0, 0, 200 ) );
But.setForeground( new Color( 70, 155, 255 ) );
this.add( But );
this.setBackground( new Color( 0, 0, 0, 0 ) );
this.setMinimumSize( new Dimension( 200,100 ) );
this.setVisible( true );
}
public static void main( String[ ] Args )
{
new ButtonExample( );
}
}
problem is that the button reports being fully opaque when in fact it isn’t (due to the partially transparent color)
BTW: as you see I changed the field name to conform to java naming conventions 🙂
Edit
arggghh .. missed that, sorry. Need to check what we do in SwingX, from the top of my head I would say you need to override paintComponent and handle the background painting yourself, like
didn’t try, though, maybe the “getting more opaque” is back again with doing so .. will come back tomorrow
Edit 2
okay, checked – the edited code works correctly. So in summary: components with translucent background
for your convenience, here’s a small runnable with incorrect/correct background side-by-side