改变jframe的形状
不知道可不可以,有没有办法把jframe的形状改成圆形
I don't know whether it is possible or not.Is there any way to change the shape of jframe into circle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本质上,您要做的就是使 JFrame 渲染表面的外部透明,然后在中间绘制您自己的自定义形状。
这将帮助您开始:
这是一个完成的实现:
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:
And this is a finished implementation:
//可以改变JFrame的形状
导入 java.awt.geom.*;
//You can change the shape of JFrame
import java.awt.geom.*;