改变jframe的形状

发布于 2024-10-20 23:15:24 字数 34 浏览 1 评论 0原文

不知道可不可以,有没有办法把jframe的形状改成圆形

I don't know whether it is possible or not.Is there any way to change the shape of jframe into circle

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十六岁半 2024-10-27 23:15:24

本质上,您要做的就是使 JFrame 渲染表面的外部透明,然后在中间绘制您自己的自定义形状。

这将帮助您开始:

http://java.sun.com/developer/technicalArticles/GUI/translucent_shape_windows /

这是一个完成的实现:

http://www.codeproject.com/KB/java/形状透明-jframe.aspx

Essentially what you have to do is make the outer part of your JFrame rendered surface transparent and then draw your own custom shape in the middle.

This will get you started:

http://java.sun.com/developer/technicalArticles/GUI/translucent_shaped_windows/

And this is a finished implementation:

http://www.codeproject.com/KB/java/shaped-transparent-jframe.aspx

箹锭⒈辈孓 2024-10-27 23:15:24

//可以改变JFrame的形状
导入 java.awt.geom.*;

setUndecorated(true);
Ellipse2D.Double E=new Ellipse2D.Double(0,0,500,500); //nested class Double## 

 - Heading

 ##
setShape(E);
setVisible(true);

//You can change the shape of JFrame
import java.awt.geom.*;

setUndecorated(true);
Ellipse2D.Double E=new Ellipse2D.Double(0,0,500,500); //nested class Double## 

 - Heading

 ##
setShape(E);
setVisible(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文