자바 스윙 JPanel 패 널 사용 방법

1794 단어 SwingJPanel판 넬
1.개술
공식 자바 DocsApi:javax.swing.JPanel
JPanel,패 널.JPanel 은 개발 중 사용 빈도 가 매우 높 은 일반 경량급 패 널 용기 구성 요소 다.
JPanel 상용 구조 방법:

//              
JPanel()

//             
JPanel(LayoutManager layout)
2.코드 인 스 턴 스

package com.xiets.swing;

import javax.swing.*;
import java.awt.*;

public class Main {

  public static void main(String[] args) {
    JFrame jf = new JFrame("    ");
    jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

    //   1   JPanel,          
    JPanel panel01 = new JPanel();
    panel01.add(new JLabel("   "));
    panel01.add(new JTextField(10));

    //   2   JPanel,          
    JPanel panel02 = new JPanel();
    panel02.add(new JLabel("    "));
    panel02.add(new JPasswordField(10));

    //   3   JPanel,       ,            
    JPanel panel03 = new JPanel(new FlowLayout(FlowLayout.CENTER));
    panel03.add(new JButton("  "));
    panel03.add(new JButton("  "));

    //           ,     3   JPanel               
    Box vBox = Box.createVerticalBox();
    vBox.add(panel01);
    vBox.add(panel02);
    vBox.add(panel03);

    jf.setContentPane(vBox);

    jf.pack();
    jf.setLocationRelativeTo(null);
    jf.setVisible(true);
  }

}
결과 전시:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기