Code (Java):
import java.awt.FlowLayout;
import javax.swing.*;
import java.awt.Dimension;
import java.awt.event.*;
public class URLFenster extends JFrame
{
private static JTextField textField = null;
private JButton startButton = null;
public URLFenster()
{
setTitle("URL-Eingabe");
setLayout(new FlowLayout());
add(getTextField());
add(getButton());
pack();
setDefaultCloseOperation(EXIT_ON_CLOSE);...
Probleme mit TextArea
0 commentaires:
Enregistrer un commentaire