LableT.java
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 35 36 37 38 39 40 41 42 | import java.awt.*; import java.awt.event.*; public class LableT{ private Frame f; private Label l1,l2,l3; public LableT(){ f=new Frame("Lable Test"); l1=new Label(); l2=new Label("Number"); l3=new Label("Name",Label.RIGHT); f.addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ System.exit(0); } }); l1.setBackground(Color.red); l2.setBackground(Color.yellow); l3.setBackground(Color.green); l1.setText("senmon"); l2.setAlignment(Label.CENTER); System.out.println("Text of lb2 : "+l2.getText()); System.out.println("Alignment of lb3 : "+l3.getAlignment()); f.add(l1,"North"); f.add(l2, "Center"); f.add(l3, "South"); f.setSize(300, 200); f.setVisible(true); } public static void main(String[] args){ LableT lt = new LableT(); } } | cs |
<실행 결과>
반응형
'Dev > JAVA' 카테고리의 다른 글
[JAVA] 프레임에 버튼 배치하기-3-(FlowLayout) (0) | 2016.08.08 |
---|---|
[JAVA] 프레임에 버튼 배치하기-2- (0) | 2016.08.08 |
[JAVA] 프레임에 버튼 배치하기-1-(BorderLayout) (0) | 2016.08.08 |
[JAVA] 패널 생성하기 (0) | 2016.08.08 |
[JAVA] AWT. 프레임 생성 (0) | 2016.08.08 |