Pages

How to use in java Radion Button(Radio Button Nasıl Kullanılır?)

 
JPanel radioPanel = new JPanel(new GridLayout(1, 1));//Panel Oluşturuluyor
radioPanel.setBorder(BorderFactory.createTitledBorder(""));//Panel Çizgi

final String erkek = "Erkek";//Radio Button İsimleri
             final String kadin = "Kadın";//Radio Button İsimleri

JLabel cinsiyetLabel = new JLabel("Cinsiyet:", JLabel.RIGHT); //Radio Button Sol Kenar Yazısı
final ButtonGroup group = new ButtonGroup();//Radio Buttonları Eklemek için grup oluşturuluyor

JRadioButton erkekButton = new JRadioButton(erkek); //Radio Buttonların içine yukarda belirttiğimiz Stringler radio buttonların içine ekleniyor
JRadioButton kadinButton = new JRadioButton(kadin); //Radio Buttonların içine yukarda belirttiğimiz Stringler radio buttonların içine ekleniyor

            
             erkekButton.setActionCommand(kadin); //Kadın button seçili değil
             erkekButton.setSelected(true); //Erkek button’u seçili yapar

             radioPanel.add(erkekButton); //Radio buttonlar Panele Ekleniyor
             radioPanel.add(kadinButton); //Radio buttonlar Panele Ekleniyor
Share on Google Plus

About eclipseturkiye

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 yorum:

Yorum Gönder