import javax.swing.JFrame;
import javax.swing.JLabel;
public class HelloWorldFrame extends JFrame {
public static void main(String args[]) {
new HelloWorldFrame(); }
HelloWorldFrame() {
JLabel jlbHelloWorld = new JLabel("Hello World");
add(jlbHelloWorld);
this.setSize(100, 100);
setVisible(true);}
}
import javax.swing.*;
public class SW
public static void main(String[] args) {
createAndShowGUI();}
private static void createAndShowGUI() {
JFrame frame = new JFrame("Hi..");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);
frame.pack();
frame.setVisible(true);
14
Do'stlaringiz bilan baham: |