BOm dia gente estou com uma dúivda, eu crie meu projeto , assistindo um vídeo, fiquei consfuso como iniciar o projeto, se desenvolvo só com códigos, ou utiliza a interface swing? Ou só utilizo para verificar comom está?
import java.awt.EventQueue;
import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JComboBox;
public class CoversorMoedas {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
CoversorMoedas window = new CoversorMoedas();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public CoversorMoedas() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JButton btnNewButton = new JButton("New button");
btnNewButton.setBounds(166, 115, 89, 23);
frame.getContentPane().add(btnNewButton);
JOptionPane.showInputDialog(btnNewButton);
JComboBox comboBox = new JComboBox();
comboBox.setBounds(166, 149, 207, 22);
frame.getContentPane().add(comboBox);
JOptionPane.showInputDialog(comboBox);
}
}