Copiez le code comme suit :
importer javax.swing.JFrame ;
la classe publique TansluFrame étend JFrame
{
public TansluFrame()
{
com.sun.awt.AWTUtilities.setWindowOpacity(this, 0.6f);
}
public static void main (String[] arguments)
{
Cadre TansluFrame = new TansluFrame();
frame.setTitle("Fenêtre translucide");
frame.setSize(400, 300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}