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

طريقة إضافة أي شيء في الـ JPanel

طريقة إضافة أي شيء في الـ JPanel
طريقة إضافة أي شيء في الـ JPanel
طريقة إضافة أي شيء في الـ JPanel
طريقة إضافة أي شيء في الـ JPanel

طريقة إضافة أي شيء في الـ JPanel
المناهج السعوديةطريقة إضافة أي شيء في الـ JPanel

 

المثال التالي يعلمك طريقة إضافة أي شيء في الـ Panel.

مثال

Main.java

  1. import javax.swing.JFrame;
  2. import javax.swing.JPanel;
  3. import javax.swing.JButton;
  4. import java.awt.Color;
  5.  
  6. publicclass Main {
  7.  
  8. publicstaticvoidmain(String[] args){
  9.  
  10. // هنا قمنا بإنشاء النافذة مع تحديد بعض خصائصها
  11. JFrame frame = newJFrame(“JPanel demo”);
  12. frame.setSize(300240);
  13. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  14. frame.setLayout(null);
  15.  
  16. // Frame لونه رمادي و حددنا موقعه بداخل الـ Panel هنا قمنا بتعريف
  17. JPanel panel = newJPanel();
  18. panel.setBackground(Color.gray);
  19. panel.setBounds(5050180110);
  20.  
  21. // Frame في الـ Panel هنا وضعنا الـ
  22. frame.add(panel);
  23.  
  24. // Buttons هنا قمنا بتعريف 4
  25. JButton button1 = newJButton(“Button 1”);
  26. JButton button2 = newJButton(“Button 2”);
  27. JButton button3 = newJButton(“Button 3”);
  28. JButton button4 = newJButton(“Button 4”);
  29.  
  30. // منهم Button هنا قمنا بإعطاء لون خلفية مختلف لكل
  31. button1.setBackground(Color.orange);
  32. button2.setBackground(Color.yellow);
  33. button3.setBackground(Color.green);
  34. button4.setBackground(Color.pink);
  35.  
  36. // Panel في الـ Buttons هنا قمنا بوضع الـ
  37. panel.add(button1);
  38. panel.add(button2);
  39. panel.add(button3);
  40. panel.add(button4);
  41.  
  42. // مرئية Frame هنا جعلنا الـ
  43. frame.setVisible(true);
  44.  
  45. }
  46.  
  47. }

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

طريقة إضافة أشياء component في ال JPanel في جافا
 

المصدر: طريقة إضافة أي شيء في الـ JPanel – المناهج السعودية

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

اترك رد

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

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

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