次のようにコードをコピーします。
javax.swing.JFrameをインポートします。
パブリッククラス TansluFrame は JFrame を拡張します
{
パブリック TansluFrame()
{
com.sun.awt.AWTUtilities.setWindowOpacity(this, 0.6f);
}
public static void main(String[] args)
{
TansluFrame フレーム = new TansluFrame();
Frame.setTitle("半透明ウィンドウ");
フレーム.setSize(400, 300);
フレーム.setVisible(true);
Frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}