الجامعات العربية
طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
طريقة إنشاء JButton – طريقة إنشاء JButton
المناهج السعوديةطريقة إنشاء JButton – طريقة إنشاء JButton
المثال التالي يعلمك طريقة إنشاء كائن من الكلاس JButton و إضافته في النافذة.
مثال
- import javax.swing.JFrame;
- import javax.swing.JButton;
- import java.awt.FlowLayout;
- publicclass Main {
- publicstaticvoidmain(String[] args){
- JFrame frame = newJFrame(“JButton demo”); // أي قمنا بإنشاء نافذة مع وضع عنوان لها JFrame هنا أنشأنا كائن من الكلاس
- frame.setSize(300, 250); // هنا قمنا بتحديد حجم النافذة. عرضها 300 و طولها 250
- frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // هنا جعلنا زر الخروج من النافذة يغلق البرنامج
- frame.setLayout(newFlowLayout()); // حتى نجعل الأشياء التي نضيفها في النافذة تترب وراء بعضها و في وسط النافذة FlowLayout إستخدمنا الـ
- JButton button = newJButton(“Simple Button”); // Button أي قمنا بإنشاء JButton هنا أنشأنا كائن من الكلاس
- frame.add(button); // frame في الـ button هنا أضفنا الـ
- frame.setVisible(true); // هنا جعلنا النافذة مرئية
- }
- }
•ستظهر لك النافذة التالية عند التشغيل.