Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 9, 2020 11:47
Show Gist options
  • Save uncoded-ro/d1f26cd044fd7ce4d1267d3cfb69728f to your computer and use it in GitHub Desktop.
Save uncoded-ro/d1f26cd044fd7ce4d1267d3cfb69728f to your computer and use it in GitHub Desktop.
package ro.virtualcampus.gui;
import javax.swing.*;
public class InterfataGrafica {
public static void main(String args[]) {
JFrame fereastra = new JFrame("Exemplu interfata grafica");
fereastra.setSize(300, 100);
fereastra.setLocation(200, 200);
fereastra.getContentPane().add(new JLabel("Eticheta fereasta principala"));
fereastra.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fereastra.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment