검색결과 리스트
전체 글에 해당되는 글 238건
- 2009.04.20 JAVA 1
글
JAVA
프로그래밍
2009. 4. 20. 14:44
import org.kwis.msp.lcdui.*;
import org.kwis.msp.lwc.*;
public class FontEx extends Jlet
{
ShellComponent shell = new ShellComponent();
FontComponent font = new FontComponent();
protected void startApp(String args[])
{
shell.addComponent(font);
shell.show();
}
protected void destroyApp(boolean b){}
}
class FontComponent extends Component
{
public void paintContent(Graphics g)
{
Font font;
//기본값으로 설정
font = Font.getDefaultFont();
g.setFont(font);
g.drawString("WIPT PROJECT.", 10, 10, g.TOP);
//getFont()를 이용하여 속성 설정
font = Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD | Font.STYLE_UNDERLINED, Font.SIZE_LARGE);
g.setFont(font);
g.drawString("KOREA", getWidth()/2, getHeight()/2, g.HCENTER);
}
}