第5周作业-字体设置

来源:互联网 发布:统计数据软件 编辑:程序博客网 时间:2024/06/02 13:13

import java.awt.*;import java.awt.font.*;import javax.swing.*;public class FontSet{   public static void main(String args[]){FontFrame frame = new FontFrame();frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);frame.show();}}class FontFrame extends JFrame{public FontFrame(){setTitle("设置字体");setSize(WIDTH,HEIGHT);FontPanel panel = new FontPanel();//将panel加入到FrameContainer contentPane = getContentPane();contentPane.add(panel);}public static final int WIDTH = 300;public static final intHEIGHT = 140;}class FontPanel extends JPanel{public void paintComponent(Graphics g){super.paintComponent(g);//设置字体Font f = new Font("宋体",Font.BOLD + Font.ITALIC,20);g.setFont(f);//显示文本g.drawString("Java欢迎您!", x, y);}public int x = 55;public int y = 50;}
结果:






0 0
原创粉丝点击