Computer Science, asked by parnika2903, 8 hours ago

write a program to explain j farm and j button in java .​

Answers

Answered by krishnapriyamcommpnc
1

Answer:

Explanation:

The JButton class is used to create a labeled button that has platform independent implementation. The application result in some action when the button is pushed. It inherits AbstractButton class.

import javax.swing.*;    

public class ButtonExample {  

public static void main(String[] args) {  

   JFrame f=new JFrame("Button Example");  

   JButton b=new JButton("Click Here");  

   b.setBounds(50,100,95,30);  

   f.add(b);  

   f.setSize(400,400);  

   f.setLayout(null);  

   f.setVisible(true);    

}  

}  

Similar questions