GUI-Problem, finde meinen Fehler nicht!

Zitrus

Bekanntes Mitglied
Hallo zusammen,
Bin relativ neu in der Java Szene ca. 1 Woche und wollte eine GUI programmieren (Um genuaer zu sein einen Taschenrechner). Aber irgendwie komm ich beim Design schon durcheinander ich hoffe ihr könnt mir helfen :)

Code:
super("Rechner");
        Container c = getContentPane();
        setSize(250,240);
        setLocation(300,300);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setResizable(true);
        
        panel = new JPanel();
        panel1 = new JPanel();
        c.add(panel);
        c.add(panel1);
        c.setLayout(null);
        ta = new JTextArea();
        ta.setBounds(0,0,220,50);
        ta.setEditable(false);

        button1 = new JButton ("1");
        button1.setBounds(10,10,40,25);
        button1.setFont(new Font("Arial", 10, 10));
        button2 = new JButton ("2");
        button2.setBounds(10,10,40,25);
        button2.setFont(new Font("Arial", 10, 10));
        button3 = new JButton ("3");
        button3.setBounds(10,10,40,25);
        button3.setFont(new Font("Arial",10, 10));
        button4 = new JButton ("4");
        button4.setBounds(10,10,40,25);
        button4.setFont(new Font("Arial", 10, 10));
        button5 = new JButton ("5");
        button5.setBounds(10,10,40,25);
        button5.setFont(new Font("Arial", 10, 10));
        button6 = new JButton ("6");
        button6.setBounds(10,10,40,25);
        button6.setFont(new Font("Arial", 10, 10));
        button7 = new JButton ("7");
        button7.setBounds(10,10,40,25);
        button7.setFont(new Font("Arial", 10, 10));
        button8 = new JButton ("8");
        button8.setBounds(10,10,40,25);
        button8.setFont(new Font("Arial", 10, 10));
        button9 = new JButton ("9");
        button9.setBounds(10,10,40,25);
        button9.setFont(new Font("Arial", 10, 10));
        button10 = new JButton ("+");
        button10.setBounds(10,10,40,25);
        button10.setFont(new Font("Arial", 10, 10));
        button11 = new JButton ("-");
        button11.setBounds(10,10,40,25);
        button11.setFont(new Font("Arial", 10, 10));
        button12 = new JButton ("x");
        button12.setBounds(10,10,40,25);
        button12.setFont(new Font("Arial", 10, 10));
        button13 = new JButton ("=");
        button13.setBounds(10,10,40,100);
        button13.setFont(new Font("Arial", 10, 10));
        
        panel1.add(ta);
        panel.add(button1);
        panel.add(button2);
        panel.add(button3);
        panel.add(button10);
        panel.add(button13);
        panel.add(button4);
        panel.add(button5);
        panel.add(button6);
        panel.add(button11);
        panel.add(button7);
        panel.add(button8);
        panel.add(button9);
        panel.add(button12);
        
        setVisible(true);

Ich habe das layout mit setlayout auf null gesetzt. Jedoch passiert nun rein garnichts wenn ich das Programm starte.. Hilfe!
 
Zuletzt bearbeitet:

Flown

Administrator
Mitarbeiter
Ich kann dir deinen Fehler schon aufzeigen:

Man verwendet LayoutManager und kein null-Layout!

Vor allem aber erbt man nicht von JFrame sondern verwendet diesen nur (außer man verändert die Funktionalität dessen)!

Wenn du mehr Hilfe erwartest, dann poste auch mehr Code.
 
Zuletzt bearbeitet:

Zitrus

Bekanntes Mitglied
Ich habe zuerst einen Layout Manager benutzt, aber dann kann ich ja kein setBounds mehr benutzen..
Trotzdem schonmal Vielen Dank für deine Antwort! :)
Und hier nochmal der ganze Code:
Code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;


public class FirstGUI extends JFrame
{
    private JButton button1;
    private JButton button2;
    private JButton button3;
    private JButton button4;
    private JButton button5;
    private JButton button6;
    private JButton button7;
    private JButton button8;
    private JButton button9;
    private JButton button10;
    private JButton button11;
    private JButton button12;
    private JButton button13;
    private JPanel panel;
    private JPanel panel1;
    private JTextArea ta;
    
    public FirstGUI()
    {
        super("Rechner");
        Container c = getContentPane();
        setSize(250,240);
        setLocation(300,300);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setResizable(true);
        c.setLayout(null);
        
        panel = new JPanel(new BorderLayout());
        panel1 = new JPanel(new BorderLayout());
        ta = new JTextArea();
        ta.setBounds(0,0,220,50);
        ta.setEditable(false);

        button1 = new JButton ("1");
        button1.setBounds(10,10,40,25);
        button1.setFont(new Font("Arial", 10, 10));
        button2 = new JButton ("2");
        button2.setBounds(10,10,40,25);
        button2.setFont(new Font("Arial", 10, 10));
        button3 = new JButton ("3");
        button3.setBounds(10,10,40,25);
        button3.setFont(new Font("Arial",10, 10));
        button4 = new JButton ("4");
        button4.setBounds(10,10,40,25);
        button4.setFont(new Font("Arial", 10, 10));
        button5 = new JButton ("5");
        button5.setBounds(10,10,40,25);
        button5.setFont(new Font("Arial", 10, 10));
        button6 = new JButton ("6");
        button6.setBounds(10,10,40,25);
        button6.setFont(new Font("Arial", 10, 10));
        button7 = new JButton ("7");
        button7.setBounds(10,10,40,25);
        button7.setFont(new Font("Arial", 10, 10));
        button8 = new JButton ("8");
        button8.setBounds(10,10,40,25);
        button8.setFont(new Font("Arial", 10, 10));
        button9 = new JButton ("9");
        button9.setBounds(10,10,40,25);
        button9.setFont(new Font("Arial", 10, 10));
        button10 = new JButton ("+");
        button10.setBounds(10,10,40,25);
        button10.setFont(new Font("Arial", 10, 10));
        button11 = new JButton ("-");
        button11.setBounds(10,10,40,25);
        button11.setFont(new Font("Arial", 10, 10));
        button12 = new JButton ("x");
        button12.setBounds(10,10,40,25);
        button12.setFont(new Font("Arial", 10, 10));
        button13 = new JButton ("=");
        button13.setBounds(10,10,40,100);
        button13.setFont(new Font("Arial", 10, 10));
        
        panel1.add(ta);
        panel.add(button1);
        panel.add(button2);
        panel.add(button3);
        panel.add(button10);
        panel.add(button13);
        panel.add(button4);
        panel.add(button5);
        panel.add(button6);
        panel.add(button11);
        panel.add(button7);
        panel.add(button8);
        panel.add(button9);
        panel.add(button12);
        
        c.add(panel);
        c.add(panel1);
        
        setVisible(true);
       
    }
    
    public static void main (String[] args)
    {
        FirstGUI g = new FirstGUI();
    }
    
}
 

gamebreiti

Mitglied
Auch wenn du von JFrame erbst, musst du die Größe etc. festlegen
Denn extends JFrame besagt, dass deine Klasse ein JFrame ist.

Aber trotzdem hast du keine Größe gesetzt und andere Einstellungen vorgenommen
wie:
Java:
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // besagt,wax passiert wenn du das x drückst
setSize(1024,786); // setzt die Größe in Pixel
setVisible(true); // IMMER zuletzt
oder so ähnlich
 
Zuletzt bearbeitet:

Zitrus

Bekanntes Mitglied
Hab ich alles Drei gemacht :)
setSize(250,240);
setLocation(300,300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
 

gamebreiti

Mitglied
Sorry hab ich über sehen. Verwende lieber Java tags.

Habs mal getestet und bei mir wirds angezeigt..

kannst natürlich auch das Layout null setzen und mit den Bounds ganz genau so hinbasteln wie es
aussehen soll...
deine Buttons liegen nämlich laut Bounds alle auf der gleichen Stelle (10,10,x,y)

gruß

P.S. die Bounds der Panels haben gefehlt

Java:
package Programm;
       import javax.swing.*;

import java.awt.*;
import java.awt.event.*;


public class FirstGUI extends JFrame
{
    private JButton button1;
    private JButton button2;
    private JButton button3;
    private JButton button4;
    private JButton button5;
    private JButton button6;
    private JButton button7;
    private JButton button8;
    private JButton button9;
    private JButton button10;
    private JButton button11;
    private JButton button12;
    private JButton button13;
    private JPanel panel;
    private JPanel panel1;
    private JTextArea ta;
    
    public FirstGUI()
    {
        super("Rechner");
        
        setLayout(null);
        setSize(300,200);
        setLocation(300,300);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setResizable(true);
        
        panel = new JPanel(new FlowLayout());
        panel.setSize(300, 200);
        panel1 = new JPanel(new FlowLayout());
        panel1.setSize(300, 200);
        
        ta = new JTextArea();
        ta.setBounds(0,0,220,50);
        ta.setEditable(false);

        button1 = new JButton ("1");
        button1.setBounds(10,10,40,25);
        button1.setFont(new Font("Arial", 10, 10));
        button2 = new JButton ("2");
        button2.setBounds(10,10,40,25);
        button2.setFont(new Font("Arial", 10, 10));
        button3 = new JButton ("3");
        button3.setBounds(10,10,40,25);
        button3.setFont(new Font("Arial",10, 10));
        button4 = new JButton ("4");
        button4.setBounds(10,10,40,25);
        button4.setFont(new Font("Arial", 10, 10));
        button5 = new JButton ("5");
        button5.setBounds(10,10,40,25);
        button5.setFont(new Font("Arial", 10, 10));
        button6 = new JButton ("6");
        button6.setBounds(10,10,40,25);
        button6.setFont(new Font("Arial", 10, 10));
        button7 = new JButton ("7");
        button7.setBounds(10,10,40,25);
        button7.setFont(new Font("Arial", 10, 10));
        button8 = new JButton ("8");
        button8.setBounds(10,10,40,25);
        button8.setFont(new Font("Arial", 10, 10));
        button9 = new JButton ("9");
        button9.setBounds(10,10,40,25);
        button9.setFont(new Font("Arial", 10, 10));
        button10 = new JButton ("+");
        button10.setBounds(10,10,40,25);
        button10.setFont(new Font("Arial", 10, 10));
        button11 = new JButton ("-");
        button11.setBounds(10,10,40,25);
        button11.setFont(new Font("Arial", 10, 10));
        button12 = new JButton ("x");
        button12.setBounds(10,10,40,25);
        button12.setFont(new Font("Arial", 10, 10));
        button13 = new JButton ("=");
        button13.setBounds(10,10,40,100);
        button13.setFont(new Font("Arial", 10, 10));
        
       
        panel1.add(ta);
        panel.add(button1);
        panel.add(button2);
        panel.add(button3);
        panel.add(button10);
        panel.add(button13);
        panel.add(button4);
        panel.add(button5);
        panel.add(button6);
        panel.add(button11);
        panel.add(button7);
        panel.add(button8);
        panel.add(button9);
        panel.add(button12);
        
        add(panel);
        add(panel1);
        
        setVisible(true);
       
    }
    
    public static void main (String[] args)
    {
        new FirstGUI();
    }
    
}
 
Zuletzt bearbeitet:

Zitrus

Bekanntes Mitglied
Vielen Herzlichen Dank!! :) So ein dummer Leichtsinnsfehler wie das vergessen der Panel größen wird mir bestimmt nicht nochmal passieren! :)
 

gamebreiti

Mitglied
das wird dir nicht das letzte Mal passieren ... und man findet die nicht mal beim debuggen, weil man ja meint etwas falsch gemacht zu haben aber tatsächlich hat mans NUR vergessen.:lol:
 

Flown

Administrator
Mitarbeiter
Also mein Rat an dich. Lerne GUI Programmierung gleich richtig und lass es dir von einem LayoutManager (oder am besten von vielen, die geschachtelt sind) machen. Fixe Werte sind immer gefährlich und in den wenigsten Fällen sinnvoll. Wenn ich nacher noch Zeit habe, dann zeig ich dir ein schönes Beispiel wie man soetwas normalerweise löst.
 

Zitrus

Bekanntes Mitglied
Ja ich hatte das Problem vorher auch mit Layout Managern gelöscht nur hatte ich dabei das Problem, dass ich es nicht hinbekommen habe den "=" Button größer als die anderen zu machen(bzw. hab ihn größer gemacht aber da war der Abstand zwischen der TextArea zu groß) .. Deswegen hab ich mich jetzt einfach für das null-Layout entschieden.
 

Flown

Administrator
Mitarbeiter
So ich hab dir jetzt einmal den Windowstaschenrechner nachgebildet auf die einfachste Art. Logik zu implementieren ist dein Part.

Java:
package calc;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;

import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class Calculator {
  
  private JFrame frame;
  
  public static void main(String[] args) {
    Calculator calc = new Calculator();
    calc.show();
  }
  
  public Calculator() {
    init();
  }
  
  private void init() {
    frame = new JFrame("Calculator");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationByPlatform(true);
    frame.setPreferredSize(new Dimension(300, 400));
    frame.setResizable(false);
    JPanel mainPanel = new JPanel();
    BoxLayout boxLayout = new BoxLayout(mainPanel, BoxLayout.Y_AXIS);
    mainPanel.setLayout(boxLayout);
    /* Anzeige für Rechner */
    JTextField calcArea = new JTextField(15);
    calcArea.setEditable(false);
    calcArea.setBackground(Color.WHITE);
    mainPanel.add(calcArea);
    
    /* Steuerelemente */
    JPanel controlPanel = new JPanel(new GridBagLayout());
    String[][] commands = { { "MC", "MR", "MS", "M+", "M-" }, { "\u2190", "CE", "C", "\u00B1", "\u221A" }, { "7", "8", "9", "/", "%" },
        { "4", "5", "6", "*", "1/x" }, { "1", "2", "3", "-", "=" }, { "0", "", ",", "+" } };
    for (int y = 0; y < commands.length; y++) {
      for (int x = 0; x < commands[y].length; x++) {
        if (commands[y][x].equals("0")) {
          addButton(commands[y][x], controlPanel, x, y, 1, 2);
        } else if (commands[y][x].equals("=")) {
          addButton(commands[y][x], controlPanel, x, y, 2, 1);
        } else if (!commands[y][x].isEmpty()) {
          addButton(commands[y][x], controlPanel, x, y, 1, 1);
        }
      }
    }
    mainPanel.add(controlPanel);
    
    frame.add(mainPanel);
    frame.pack();
  }
  
  private void addButton(String name, JPanel controlPanel, int x, int y, int gridheight, int gridwidth) {
    GridBagConstraints gbc = new GridBagConstraints();
    JButton curButton = new JButton(name);
    curButton.addActionListener(event -> System.out.println(name));
    gbc.gridx = x;
    gbc.gridy = y;
    gbc.weightx = 1;
    gbc.weighty = 1;
    gbc.insets = new Insets(0, 0, 2, 2);
    gbc.fill = GridBagConstraints.BOTH;
    gbc.gridheight = gridheight;
    gbc.gridwidth = gridwidth;
    controlPanel.add(curButton, gbc);
  }
  
  public void show() {
    frame.setVisible(true);
  }
}
 
Ähnliche Java Themen
  Titel Forum Antworten Datum
G Problem mit der Anzeige von jLabel. Unlesbar wenn der Text geändert wird. AWT, Swing, JavaFX & SWT 28
H 2D-Grafik Problem mit Paint AWT, Swing, JavaFX & SWT 1
S Layout - Problem AWT, Swing, JavaFX & SWT 1
Tassos JavaFX/Problem mit der Maussteuerung in Stackpane AWT, Swing, JavaFX & SWT 7
sserio Java Fx - Problem AWT, Swing, JavaFX & SWT 3
A Problem Spiel auf Panel der GUI zu bringen AWT, Swing, JavaFX & SWT 1
A JavaFX Controller Problem AWT, Swing, JavaFX & SWT 1
TheWhiteShadow JavaFX ListView Problem beim Entfernen von Elementen AWT, Swing, JavaFX & SWT 1
E LayoutManager Welcher Layout-Mix löst mein Problem? AWT, Swing, JavaFX & SWT 3
Umb3rus JavaFX Problem mit PropertyValueFactory: can not read from unreadable property AWT, Swing, JavaFX & SWT 1
T Problem mit paintComponent() AWT, Swing, JavaFX & SWT 17
AmsananKING Java Menü-Problem AWT, Swing, JavaFX & SWT 1
K JavaFX Resizing-Problem beim BorderLayout (Center Component) beim Arbeiten mit mehreren FXMLs AWT, Swing, JavaFX & SWT 2
G Instance OF Problem AWT, Swing, JavaFX & SWT 9
FrittenFritze Ein Problem mit der CSSBox, die Größe wird nicht angepasst AWT, Swing, JavaFX & SWT 5
M Problem mit dem Anzeigen von Frames im Vordergrund AWT, Swing, JavaFX & SWT 5
Badebay Problem mit JButton AWT, Swing, JavaFX & SWT 2
newJavaGeek Grid-Layout problem AWT, Swing, JavaFX & SWT 7
J JavaFX Löschen im Tabelview macht Problem AWT, Swing, JavaFX & SWT 15
JavaTalksToMe JavaFx ExekutorService Problem AWT, Swing, JavaFX & SWT 2
Zrebna Problem bei Eventhandling (Value soll nach jedem erneutem Klick gelöscht werden) AWT, Swing, JavaFX & SWT 4
B Problem mit JavaFX AWT, Swing, JavaFX & SWT 5
J css Problem AWT, Swing, JavaFX & SWT 5
B JavaFX habe mein Problem fett markiert AWT, Swing, JavaFX & SWT 2
A Swing Filter-Problem AWT, Swing, JavaFX & SWT 1
temi JavaFX Problem mit IntelliJ und JavaFx 11 unter XUbuntu AWT, Swing, JavaFX & SWT 3
L Java FX Problem mit Ubuntu 18 und JavaFx AWT, Swing, JavaFX & SWT 27
H JTable TableCellEditor-Problem AWT, Swing, JavaFX & SWT 0
kodela Swing Problem mit Warten-Dialog AWT, Swing, JavaFX & SWT 16
B JavaFx Scene Builder Problem AWT, Swing, JavaFX & SWT 2
B [Problem] Java öffnet Word-Datein nicht AWT, Swing, JavaFX & SWT 14
T DataBinding Problem AWT, Swing, JavaFX & SWT 5
Blender3D Problem mit € Symbol Font Gotham Windows 10 Swing AWT, Swing, JavaFX & SWT 11
T Problem mit JTable Sortierung AWT, Swing, JavaFX & SWT 2
J Problem mit Platfrom run later AWT, Swing, JavaFX & SWT 15
J Problem mit Platfrom run later AWT, Swing, JavaFX & SWT 0
D Swing SwingUtils / Thread Problem AWT, Swing, JavaFX & SWT 3
L JavaFX Problem beim Aufrufen einer Methode AWT, Swing, JavaFX & SWT 5
T Swing Problem mit Datum und FormattedTextField AWT, Swing, JavaFX & SWT 2
S AWT Java print dialog Problem AWT, Swing, JavaFX & SWT 0
olfibits JavaFX Problem mit HTMLEditor AWT, Swing, JavaFX & SWT 0
W SWT hover-background-problem with first column in TreeViewer AWT, Swing, JavaFX & SWT 0
M Problem mit Add JScrollPane AWT, Swing, JavaFX & SWT 25
Mario1409 Swing JTextArea scroll Problem AWT, Swing, JavaFX & SWT 0
N Swing Problem mit loop AWT, Swing, JavaFX & SWT 2
S Swing Problem mit Button und ActionListener AWT, Swing, JavaFX & SWT 5
S Swing & Clean und build Problem AWT, Swing, JavaFX & SWT 12
S JLabel setText() Problem AWT, Swing, JavaFX & SWT 6
I 2D-Grafik Problem beim Ändern der Farbe eine 2d Objekts AWT, Swing, JavaFX & SWT 3
G Swing Splitpane Problem AWT, Swing, JavaFX & SWT 1
F Problem mit der FXML Rectangle Shape AWT, Swing, JavaFX & SWT 2
N JavaFX Stranges Problem mit der Autoscroll-Eigenschaft von Textareas AWT, Swing, JavaFX & SWT 0
E Java FX FXML Problem mit html Scriptausführung AWT, Swing, JavaFX & SWT 2
J JavaFX Intersect Problem mit Shapes AWT, Swing, JavaFX & SWT 10
R JavaFX MediaPlayer AVI-Problem AWT, Swing, JavaFX & SWT 1
M Swing Problem mit ListCellRenderer AWT, Swing, JavaFX & SWT 7
D Problem mit JTable AWT, Swing, JavaFX & SWT 1
F GUI Auflösung ändern - Koordianten und Proportions Problem AWT, Swing, JavaFX & SWT 21
J Problem mit Button darstellung AWT, Swing, JavaFX & SWT 23
M Problem mit Layoutmanagern... Hilfe wäre sehr nett. AWT, Swing, JavaFX & SWT 2
S 2D-Grafik Problem mit Variablen AWT, Swing, JavaFX & SWT 4
7 JavaFX Problem beim Zeichnen eines Dreiecks in einem GUI AWT, Swing, JavaFX & SWT 6
M Swing AttributiveCellTableModel addRow() Problem AWT, Swing, JavaFX & SWT 1
J Swing Problem mit Graphics Methode AWT, Swing, JavaFX & SWT 4
N JavaFX Problem mit table multiple selection AWT, Swing, JavaFX & SWT 5
K CheckBox Problem AWT, Swing, JavaFX & SWT 5
Grevak DisplayMode Problem seit Windows 10 AWT, Swing, JavaFX & SWT 2
S Swing Eigene JComboBox Problem! AWT, Swing, JavaFX & SWT 1
B Swing Problem mit Bildpfad AWT, Swing, JavaFX & SWT 4
N Swing Problem beim Scrollen mit JScrollPane AWT, Swing, JavaFX & SWT 6
V Graphics g - drawOval problem mit background AWT, Swing, JavaFX & SWT 1
C AWT Problem mit Protokol Fenster AWT, Swing, JavaFX & SWT 0
M Swing pack() Problem mit Taskleiste AWT, Swing, JavaFX & SWT 4
N Swing Choice- Problem! AWT, Swing, JavaFX & SWT 8
Q "AWT-EventQueue-0" Exception Problem AWT, Swing, JavaFX & SWT 4
D jButton Problem, ein Rieser Button bedeckt das ganze frame AWT, Swing, JavaFX & SWT 1
A Problem: repaint() - Schleife AWT, Swing, JavaFX & SWT 3
J Anfänger GUI Problem bei der Ausführung eines sehr einfachen Programms AWT, Swing, JavaFX & SWT 2
P AWT Problem mit Platzierung (GridBagLayout) AWT, Swing, JavaFX & SWT 2
N Swing JTree Problem beim erstellen der Knoten AWT, Swing, JavaFX & SWT 0
N Swing CardLayout: Problem beim Wechsel zwischen den JPanels AWT, Swing, JavaFX & SWT 3
A Mini-Menu-Schriften. Ein Problem bei hohen DPI Zahlen AWT, Swing, JavaFX & SWT 2
Z Canvas in Frame einfügen. Problem mit 4-Gewinnt AWT, Swing, JavaFX & SWT 1
C Thread-/ Simulations- Problem AWT, Swing, JavaFX & SWT 18
G Swing Setvisible problem AWT, Swing, JavaFX & SWT 1
J JTabbedPane: close Button Problem AWT, Swing, JavaFX & SWT 2
Tom299 JavaFX -> fxmlLoader -> getResourceAsStream Problem AWT, Swing, JavaFX & SWT 1
T Problem: ComboBox und addItem AWT, Swing, JavaFX & SWT 5
M JTextArea wird nicht aktualisiert (ActionListener-Problem) AWT, Swing, JavaFX & SWT 1
T LayoutManager LookAndFeel-Problem AWT, Swing, JavaFX & SWT 4
F Problem mit Implementierung von Kollisionsabfrage AWT, Swing, JavaFX & SWT 5
vodkaz (javafx) Image Problem AWT, Swing, JavaFX & SWT 2
T Problem beim Zeichnen von Rechteck AWT, Swing, JavaFX & SWT 3
B JavaFX Problem bei Kamera / Group, gesamte Scene bewegt sich mit AWT, Swing, JavaFX & SWT 0
L Swing Vier Gewinnt Problem AWT, Swing, JavaFX & SWT 2
B JavaFX KeyEvent und Canvas draw Problem AWT, Swing, JavaFX & SWT 9
R Swing Problem: IOException bei ActionListener AWT, Swing, JavaFX & SWT 1
GianaSisters JFrame mit JInternalFrames, Keylistener-Problem AWT, Swing, JavaFX & SWT 9
Q JList Update Problem AWT, Swing, JavaFX & SWT 1
A Problem mit drawImage AWT, Swing, JavaFX & SWT 1

Ähnliche Java Themen

Neue Themen


Oben