swing自带的窗体是不能够满足我们的应用需求的,所以需要制作任意图片和形状的jframe框体,比如下图:
并且可以设置窗体背景图片的透明度
下面说明如何做到上图的效果:
(1)首先你得需要一张好看的图片,比如羊皮纸。但是这个下载的图片是方方正正的矩形,羊皮纸的形状在图片的内部,所以我们用美图秀秀或者ps中的抠图功能将羊皮纸抠出来,如下:
(2)将图片保存为透明背景即可。
(3)接着写一个myjframe继承jframe,代码如下:
java" id="highlighter_863901">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import com.sun.awt.awtutilities; import javax.swing.*; import java.awt.*; public class myjframe extends jframe{ private float alpha; public myjframe(string bgpath, float alpha){ super (); mycontentpane rp = new mycontentpane(bgpath); rp.setopaque( false ); //设置内容面板为透明 this .setcontentpane(rp); this .setundecorated( true ); this .setsize(rp.img.geticonwidth(),rp.img.geticonheight()); awtutilities.setwindowopaque( this , false ); //设置为jframe为透明 this .alpha = alpha; } private class mycontentpane extends jpanel{ public imageicon img; public mycontentpane(string bgpath) { super (); img = new imageicon(test. class .getresource(bgpath)); } @override protected void paintcomponent(graphics g) { alphacomposite ac = alphacomposite.getinstance(alphacomposite.src_over, alpha); composite old = ((graphics2d) g).getcomposite(); ((graphics2d) g).setcomposite(ac); if (img!= null ){ g.drawimage(img.getimage(), 0 , 0 , getwidth(), getheight(), this ); } ((graphics2d) g).setcomposite(old); super .paintcomponent(g); } } } |
上面的程序主要代码在于:设置jframe为透明,jframe去掉边框,设置内容面板为透明,然后将图片画到内容面板上。
(4)写一个测试类test:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import javax.swing.*; import java.awt.*; public class test { public static void main(string[] args) { /** * 设置背景图和背景图的透明度,0为全透明,1.0f为不透明。 */ myjframe f = new myjframe( "ab.png" , 0 .7f); f.setlayout( null ); font font = new font( "宋体" ,font.plain, 30 ); jlabel user = new jlabel( "用户名" ); user.setfont(font); user.setbounds( 100 , 150 , 100 , 30 ); jtextfield userinput = new jtextfield(); userinput.setfont(font); userinput.setbounds( 200 , 145 , 250 , 40 ); jlabel ps = new jlabel( "密码" ); ps.setfont(font); ps.setbounds( 110 , 200 , 90 , 30 ); jtextfield psinput = new jtextfield(); psinput.setfont(font); psinput.setbounds( 200 , 195 , 250 , 40 ); f.add(user); f.add(userinput); f.add(ps); f.add(psinput); f.setlocation( 300 , 100 ); f.setdefaultcloseoperation(jframe.exit_on_close); f.setvisible( true ); } } |
(5)由于去掉了边框,所以窗体不能拖动和拉伸,拖动和拉伸功能的实现见这篇文章 swing实现窗体拖拽和拉伸
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/A694543965/article/details/78405773