黑马程序员技术交流社区
标题:
[已解决]菜鸟求助--如何设置helloworld显示的大小
[打印本页]
作者:
田旭阳
时间:
2012-9-2 22:33
标题:
[已解决]菜鸟求助--如何设置helloworld显示的大小
本帖最后由 田旭阳 于 2012-9-3 12:23 编辑
菜鸟求助--如何设置helloworld显示的大小
在jframe窗体里面。
class ImageFrame extends JFrame{
public void paint(Graphics g) {
g.drawString("Hello World!", 800, 500);
}
}
小问题一枚 求大侠帮忙!
作者:
袁艳超
时间:
2012-9-2 23:56
Graphics有setFont方法;
class ImageFrame extends JFrame
{
public void paint(Graphics g) {
g.setFont(new Font("宋体", Font.BOLD, 15));
g.drawString("Hello World!", 800, 500);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2