首页 > 编程 > Java > 正文

java实现jframe透明窗体示例

2019-11-26 15:37:17
字体:
来源:转载
供稿:网友

复制代码 代码如下:

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);
    }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表