java程序设计 图形用户界面【三】
jlabel组件表示的是一个标签,本身是用于显示信息的,一般情况下是不能直接更改其显示内容的
import javax.swing.*;import java.awt.*;public class hello { public static void main(string[] args) { jframe frame = new jframe("一"); jlabel label = new jlabel("hello",jlabel.center); frame.add(label); dimension d = new dimension(); d.tsize(500,600); frame.tsize(d); frame.tbackground(color.black); point point = new point(300,200); frame.tlocation(point); frame.tvisible(true); }}
更改使用的字体,则可以直接使用component类中定义的以下方法
public void tfont(font t)
font类
演示
import javax.swing.*;import java.awt.*;public class hello { public static void main(string[] args) { jframe frame = new jframe("一"); 中秋节谜语大全 jlabel label = new jlabel("hello",jlabel.center); font font = new font("rief",font.italic+font.bold,28); label.tfont(font); label.tforeground(color.blue); frame.add(label); dimension d = new dimension(); d.tsize(500,600); frame.tsize(d); frame.tbackground(color.black); point point = new point(300,200); frame.tlocation(point); frame.tvisible(true); }}
imageic文明礼貌伴我行on类方法
演示
import javax.swing.*;import java.awt.*;import java.io.file;public class hello { public static void main(string[] args) { jframe frame = new jframe("一"); string picpath = "c:\\urs\452\\desktop\3.jpg"; icon icon = new imageicon(picpath); jlabel lab = null; lab = new jlabel(icon,jlabel.center); frame.add(lab); frame.tsize(800,800); frame.tbackground(color.white); frame.tlocation(300,200); frame.tvisible(true); }}
到此这篇关于java程序图形用户界面设计之标签组件 的文章莲子银耳汤的功效就介绍到这了,更多相关java 图形用户界面标签组件内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-04 22:59:24,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/5bc7fefe0afaf22bb49857e3d5132e99.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Java程序图形用户界面设计之标签组件.doc
本文 PDF 下载地址:Java程序图形用户界面设计之标签组件.pdf
留言与评论(共有 0 条评论) |