当前位置:主页 > 软件编程 > JAVA代码 >

java实现jframe透明窗体示例

时间:2020-10-22 22:40:59 | 栏目:JAVA代码 | 点击:

复制代码 代码如下:

import javax.swing.JFrame;
public class TansluFrame extends JFrame
{
    public TansluFrame()
    {
        com.sun.awt.AWTUtilities.setWindowOpacity(this, 0.6f);  
    }
    public static void main(String[] args)
    {
        TansluFrame frame = new TansluFrame();
        frame.setTitle("半透明的窗口");
        frame.setSize(400, 300);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}

您可能感兴趣的文章:

相关文章