자바 스윙 Jradio 버튼 선택 단추 구체 적 으로 사용

1.개술
공식 자바 DocsApi:javax.swing.JRadioButton
Jradio Button,체크 버튼.
JButton 상용 구조 방법:

//    ,   
JRadioButton()

//    ,   
JRadioButton(String text)

//    ,       
JRadioButton(String text, boolean selected)

Jradio Button 상용 방법:

//           、         
void setText(String text)
void setFont(Font font)
void setForeground(Color fg)

/*         javax.swing.AbstractButton     */

//             
void setSelected(boolean b)

//           
boolean isSelected()

//           
void setEnabled(boolean enable)

//           、   、          
void setIcon(Icon defaultIcon)
void setPressedIcon(Icon pressedIcon)
void setDisabledIcon(Icon disabledIcon)

//           
void setIconTextGap(int iconTextGap)
 
JRadioButton      :

//          
void addChangeListener(ChangeListener l)
Button Group(단추 그룹):여러 개의 체크 단추 가 있 을 때 보통 하나의 체크 단추 만 선택 할 수 있 기 때문에 같은 유형의 체크 단 추 를 묶 어야 합 니 다.다음 과 같 습 니 다.

//        
ButtonGroup btnGroup = new ButtonGroup();

//           
btnGroup.add(radioBtn01);
btnGroup.add(radioBtn02);

2.코드 인 스 턴 스

package com.xiets.swing;

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

public class Main {

  public static void main(String[] args) throws AWTException {
    JFrame jf = new JFrame("    ");
    jf.setSize(200, 200);
    jf.setLocationRelativeTo(null);
    jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

    JPanel panel = new JPanel();

    //         
    JRadioButton radioBtn01 = new JRadioButton(" ");
    JRadioButton radioBtn02 = new JRadioButton(" ");

    //      ,            
    ButtonGroup btnGroup = new ButtonGroup();
    btnGroup.add(radioBtn01);
    btnGroup.add(radioBtn02);

    //            
    radioBtn01.setSelected(true);

    panel.add(radioBtn01);
    panel.add(radioBtn02);

    jf.setContentPane(panel);
    jf.setVisible(true);
  }

}

결과 전시:

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

좋은 웹페이지 즐겨찾기