الجامعات العربية

طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره

طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره
طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره
طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره
طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره
طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره
المناهج السعودية

طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره

المثال التالي يعلمك طريقة معرفة الـ Radio Button الذي قام المستخدم بإختياره ضمن مجموعة Radio Buttons.

مثال

Main.java

  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;
  3. import javax.swing.JFrame;
  4. import javax.swing.JLabel;
  5. import javax.swing.JRadioButton;
  6. import javax.swing.ButtonGroup;
  7. import javax.swing.JButton;
  8.  
  9. publicclass Main {
  10.  
  11. // هنا قمنا بإنشاء النافذة و جميع الأشياء التي سنضعها فيها
  12. static JFrame frame = newJFrame(“JRadioButton demo”);
  13. static JLabel label = newJLabel(“Select your language”);
  14. static JRadioButton radioButton_1 = newJRadioButton(“Arabic”true);
  15. static JRadioButton radioButton_2 = newJRadioButton(“English”);
  16. static JRadioButton radioButton_3 = newJRadioButton(“French”);
  17. static JLabel labelResult = newJLabel();
  18. static JButton button = newJButton(“View selected choice”);
  19.  
  20. publicstaticvoidmain(String[] args){
  21.  
  22. // ضمن مجموعة واحدة JRadioButton و الذي سنسخدمه لوضع كائنات الـ ButtonGroup هنا أنشأنا كائن من الكلاس
  23. ButtonGroup group = newButtonGroup();
  24. group.add(radioButton_1);
  25. group.add(radioButton_2);
  26. group.add(radioButton_3);
  27.  
  28. // frame هنا قمنا بتحديد أماكن الأشياء التي سنضيفها في الـ
  29. label.setBounds(401015030);
  30. radioButton_1.setBounds(404010030);
  31. radioButton_2.setBounds(407010030);
  32. radioButton_3.setBounds(4010010030);
  33. button.setBounds(4015017030);
  34. labelResult.setBounds(4019018030);
  35.  
  36. // frame هنا قمنا بإضافة جميع الأشياء التي قمنا بتعريفها سابقاً في الـ
  37. frame.add(label);
  38. frame.add(radioButton_1);
  39. frame.add(radioButton_2);
  40. frame.add(radioButton_3);
  41. frame.add(button);
  42. frame.add(labelResult);
  43.  
  44. // frame هنا قمنا بتحديد خصائص الـ
  45. frame.setSize(300300)// هنا قمنا بتحديد حجم النافذة. عرضها 300 و طولها 300
  46. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)// هنا جعلنا زر الخروج من النافذة يغلق البرنامج
  47. frame.setLayout(null)// لذلك قمنا بتحديد مكان كل شيء قمنا بإضافته في النافذة Layout Manager أي لم نستخدم أي null هنا وضعنا
  48. frame.setVisible(true)// هنا جعلنا النافذة مرئية
  49.  
  50.  
  51. // button هنا نضع الأوامر التي نريد تنفيذها عند النقر على الـ
  52. button.addActionListener(newActionListener(){
  53. @Override
  54. publicvoidactionPerformed(ActionEvent e)
  55. {
  56. // labelResult سيتم وضع النص التالي كنص للـ radioButton_1 إذا قام المستخدم بإختيار الـ
  57. if(radioButton_1.isSelected())
  58. labelResult.setText(“You language is: “+radioButton_1.getText());
  59.  
  60. // labelResult سيتم وضع النص التالي كنص للـ radioButton_2 إذا قام المستخدم بإختيار الـ
  61. elseif(radioButton_2.isSelected())
  62. labelResult.setText(“You language is: “+radioButton_2.getText());
  63.  
  64. // labelResult سيتم وضع النص التالي كنص للـ radioButton_3 إذا قام المستخدم بإختيار الـ
  65. elseif(radioButton_3.isSelected())
  66. labelResult.setText(“You language is: “+radioButton_3.getText());
  67. }
  68. });
  69.  
  70. }
  71.  
  72. }

ستظهر لك النافذة التالية عند التشغيل.

طريقة معرفة ال JRadioButton الذي قام المستخدم بإختياره في جافا
 

 

المصدر: طريقة معرفة الـ JRadioButton الذي قام المستخدم بإختياره – المناهج السعودية

مقالات ذات صلة

اترك رد

زر الذهاب إلى الأعلى

أنت تستخدم إضافة Adblock

برجاء دعمنا عن طريق تعطيل إضافة Adblock