gui problem

hhm136

Mitglied
hi guys
i try to make my rograme similar to the following pic and i couldn't
1.jpg
i use many panel and different Layout but could not be able to make as the photo
any advice ? ;(
 

Gucky

Top Contributor
Hey hhm136,
this is a german speaking forum but I will try to help you.

The two parts on the left are both BorderLayout and the one on the right ist, I think, GroupLayout. But I don't know how to reproduce the one on top.
 

kaoZ

Top Contributor
To solve your Problem u can use a JSplitPane as Container, on the left side add a Jpanel with BoxLayout, and two Jpanel with BorderLayout to them.

On the right side use a GridBagLayout to get this Look.

Instead off a JSplitPane you can use another GridBagLayout.

[EDIT]in 5 hours when im back home,i try to show you an example.[/EDIT]
 
Zuletzt bearbeitet:

kaoZ

Top Contributor
so finally , here is a raw example of this layout, but youre able to see, that you can use different Layoutmanagers, and Container which include another Container to get the layout you want.

edit: there are many other ways to get such a layout !

Java:
package tests;

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

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class SimpleExample extends JFrame{
	private static final long serialVersionUID = 1L;
	
	JPanel left;
	JPanel right;
	
	final Dimension frameDim = new Dimension(400,200);
	
	public SimpleExample() {
		setSize(frameDim);
		setLocationRelativeTo(null);
		setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
		
		this.left = createLeftComponent();
		this.right = createRightComponent();
		
		addComponents();
		
	}
	
	private JPanel createLeftComponent(){
		JPanel panel = new JPanel();
		panel.setLayout(new BorderLayout());
		panel.setPreferredSize(new Dimension(150, 0));
		panel.setBorder(BorderFactory.createMatteBorder(0, 0, 0, 1, Color.LIGHT_GRAY));
		
		JPanel upper = new JPanel(new BorderLayout());
		upper.setPreferredSize(new Dimension(0,100));
		upper.setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, Color.LIGHT_GRAY));
		
		JPanel lower = new JPanel(new BorderLayout());
		lower.setPreferredSize(new Dimension(0,100));
		
		
		 panel.add(BorderLayout.PAGE_START, upper);
		 panel.add(BorderLayout.PAGE_END, lower);
		
		return panel;
	}
	
	private JPanel createRightComponent(){
		JPanel panel = new JPanel(new GridBagLayout());
		
		GridBagConstraints g = new GridBagConstraints();
		
		JLabel l1 = new JLabel("Label 1 :");
		JLabel l2 = new JLabel("Label 2 :");
		
		JTextField f1 = new JTextField();
		JTextField f2 = new JTextField();
		
		f1.setPreferredSize(new Dimension(120,25));
		f2.setPreferredSize(new Dimension(120,25));
		
		g.insets = new Insets(5, 5, 5, 5);
		
		g.gridx = 0;
		g.gridy = 0;
		panel.add(l1, g);
		
		g.gridx = 1;
		g.gridy = 0;
		panel.add(f1, g);
		
		g.gridx = 0;
		g.gridy = 1;
		panel.add(l2, g);
		
		g.gridx = 1;
		g.gridy = 1;
		panel.add(f2, g);
		
		return panel;
	}
	
	private void addComponents(){
		this.add(BorderLayout.LINE_START, left);
		this.add(BorderLayout.CENTER, right);
	}
	
	public static void main(String[] args) {
		new SimpleExample().setVisible(true);
	}
	
}

so, here is a screenshot :

 
Zuletzt bearbeitet:

kaoZ

Top Contributor
If you want to show a Digital Clock like in the original :

try something like this:

Java:
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class JTimer extends JPanel{
	private static final long serialVersionUID = 1L;

	final JLabel label;
	final SimpleDateFormat f = new SimpleDateFormat("HH:mm:ss");
	
	public JTimer() {
		setSize(150,300);
		label = new JLabel();
		
		this.add(label);
		
		new Thread(){
			@Override
			public void run(){
				while (true) {
					label.setText(String.valueOf(f.format(new Date())));
					try {
						Thread.sleep(1000);
					} catch (Exception e) {
						// TODO: handle exception
					}
				}
			}
		}.start();
	}

	
	public static void main(String[] args) {
		JFrame f = new JFrame();
		f.add(new JTimer());
		f.pack();
		f.setVisible(true);
	}
}
 

hhm136

Mitglied
when i run my program the analog clock does not work propely there is someting wrong

run my code
i see if could help me to fix it
also the buttom that change the digital clock from 24 to 12 Am\Pm dose not work

the main class
Code:
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.Timer;



public class s201068380 extends JFrame implements ActionListener  {



   JFrame frame = new JFrame("Java Alarm Clock");
        JPanel left;
        JPanel right;
		 JButton b1,b2;
		  JTextField f1, f2, f3;
		  JPanel lower;
		  DigitalclockAM dcla;
		  Digitalclock dcl;
		 int s = 0 ;
		 int os = 0 ;
		 int h;
		int m;



        final Dimension frameDim = new Dimension(700,400);


JMenu Clock = new JMenu("Clock");
	JMenuItem Chdate = new JMenuItem("Change date");
	JMenuItem Chtime= new JMenuItem("Change time ");


JMenu Alarm = new JMenu("Alarm");

	JMenuItem ChAlarmt = new JMenuItem("Change Alarm Time");
	JMenuItem ChAlarms = new JMenuItem("Change Alarm Sound ");


JMenu Help = new JMenu("Help");
	JMenuItem Manual = new JMenuItem("Manual");

JMenuBar bar = new JMenuBar();




	public s201068380()
	{
		super("Java Alarm Clock");
		    setSize(frameDim);
            setLocationRelativeTo(null);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

            this.left = createLeftComponent();
            this.right = createRightComponent();

            addComponents();

		setJMenuBar(bar);

		Clock.add(Chdate);
		Clock.add(Chtime);
		bar.add(Clock);


		Alarm.add(ChAlarmt);
		Alarm.add(ChAlarms);
		bar.add(Alarm);



		Help.add(Manual);
		bar.add(Help);



		Chdate.addActionListener(this);
		Chtime.addActionListener(this);
		ChAlarmt.addActionListener(this);
		ChAlarms.addActionListener(this);
		Manual.addActionListener(this);
		b1.addActionListener(this);
		b2.addActionListener(this);


            setVisible(true);
	}
	 private JPanel createLeftComponent(){
            JPanel panel = new JPanel();
            panel.setLayout(new BorderLayout());
            panel.setPreferredSize(new Dimension(300, 0));
            panel.setBorder(BorderFactory.createMatteBorder(0, 0, 0, 1, Color.LIGHT_GRAY));

            JPanel upper = new JPanel(new BorderLayout());
            upper.setPreferredSize(new Dimension(0,250));
            upper.setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, Color.LIGHT_GRAY));
            Analogclock clock = new Analogclock();
           JPanel p1 = new JPanel();
				upper.add(clock);

					clock.start();
	            upper.setVisible(true);


             JPanel lower = new JPanel(new BorderLayout());
            lower.setPreferredSize(new Dimension(0,100));

             		Digitalclock dcl = new Digitalclock();
             		DigitalclockAM dcla = new DigitalclockAM();

            if(s == 0){

				lower.add(dcl, BorderLayout.SOUTH);

            }
	     	 else if(s == 1){

	       		lower.add(dcla, BorderLayout.SOUTH);

	     	 }
	  lower.setVisible(true);

             panel.add(BorderLayout.PAGE_START, upper);
             panel.add(BorderLayout.PAGE_END, lower);

            return panel;
        }


         private JPanel createRightComponent(){
            JPanel panel = new JPanel(new GridBagLayout());

            GridBagConstraints g = new GridBagConstraints();

            JLabel l1 = new JLabel("Date");
            JLabel l2 = new JLabel("Day");
             JLabel l3 = new JLabel("Alarm");



             f1 = new JTextField();
             f2 = new JTextField();
             f3 = new JTextField();

            SimpleDateFormat date = new SimpleDateFormat("MMMMMMMMMMMM:dd:yyyy");
			f1.setText(String.valueOf(date.format(new Date())));

			 SimpleDateFormat day = new SimpleDateFormat("EEEEEEEEEEEE");
			 f2.setText(String.valueOf(day.format(new Date())));

			if (os == 0){

					f3.setText(h + ":" + m + "                    " + " ON");
				  f3.setVisible(true);
			}
			else {

				f3.setText(h + ":" + m + "                    " + " OFF");
				  f3.setVisible(true);
			}



            f1.setPreferredSize(new Dimension(120,25));
            f2.setPreferredSize(new Dimension(120,25));
            f3.setPreferredSize(new Dimension(120,25));


             b1 = new JButton("Turn Alarm Off");
             b2 = new JButton("Change to AM/PM");




            g.insets = new Insets(5, 5, 5, 5);

            g.gridx = 0;
            g.gridy = 0;
            panel.add(l1, g);

            g.gridx = 1;
            g.gridy = 0;
            panel.add(f1, g);

            g.gridx = 0;
            g.gridy = 1;
            panel.add(l2, g);

            g.gridx = 1;
            g.gridy = 1;
            panel.add(f2, g);

             g.gridx = 0;
            g.gridy = 2;
            panel.add(l3, g);

            g.gridx = 1;
            g.gridy = 2;
            panel.add(f3, g);

   			g.gridx = 0;
            g.gridy = 3;
            panel.add(b1, g);

          	g.gridx = 1;
            g.gridy = 3;
            panel.add(b2, g);


            return panel;
        }
         private void addComponents(){
            this.add(BorderLayout.LINE_START, left);
            this.add(BorderLayout.CENTER, right);
        }

	  public void actionPerformed(ActionEvent ae){
	  	if(ae.getSource() == b1){
				s = (s+1)%2;
			if(s == 0)
	 			f3.setText(h + ":" + m + "                    " + " OFF");
	 		else
	 			f3.setText(h + ":" + m + "                    " + " ON");

	  		}

	  		 if(ae.getSource() == b2){
				s = (s+1)%2;
						if(s == 0){
					lower.add(dcla, BorderLayout.SOUTH);
				}
				else
					lower.add(dcl, BorderLayout.SOUTH);
	  		 }


	   if(ae.getSource() == Chtime){
	   		int hours = Integer.parseInt(JOptionPane.showInputDialog(null, "Please enter the hours:"));
			int minutes = Integer.parseInt(JOptionPane.showInputDialog(null, "Please enter the minutes:"));
			int second  = Integer.parseInt(JOptionPane.showInputDialog(null, "Please enter the seconds:"));

	   }

	 if(ae.getSource() == Chdate){
	 	int year = Integer.parseInt(JOptionPane.showInputDialog(null, "Pelase enter the year \nExample: 1992"));
		String month  = JOptionPane.showInputDialog(null, "Enter the month \nExample: April");
		int day = Integer.parseInt(JOptionPane.showInputDialog(null, "Please enter the date \nExample: 26"));
		f1.setText(month + " " + day + "," + " " + year);

	 	}
	 	 if(ae.getSource() == ChAlarmt){
		int h = Integer.parseInt(JOptionPane.showInputDialog(null, "Pelase enter the hour: "));
		int m  = Integer.parseInt(JOptionPane.showInputDialog(null, "Please enter the minutes: "));
		f3.setText(h + ":" + m + "                    " + " ON");

	  }


	  }



	        public static void main(String[] args) {
        new s201068380().setVisible(true);

    }

}
the analog clock class
Code:
import java.awt.Graphics;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class Analogclock extends JPanel implements Runnable
{
Thread thread = null;
SimpleDateFormat date = new SimpleDateFormat("s", Locale.getDefault());
Date currentDate;
int xcenter = 140, ycenter = 140, lastxm = 0, lastym = 0, lastxh = 0,lastyh = 0;
private void drawCircle(Graphics g){

g.setColor(Color.white);
g.fillOval(60, 55, 170, 170);
g.setColor(Color.BLACK);
g.drawOval(60, 55, 170, 170);


}
public void paint(Graphics g) {
int xhour, yhour, xminute, yminute, minute, hour;
drawCircle(g);
currentDate = new Date();
date.applyPattern("m");
minute = Integer.parseInt(date.format(currentDate));
date.applyPattern("h");
hour = Integer.parseInt(date.format(currentDate));

 xminute =  (int)(Math.cos(minute * 3.14f / 30 - 3.14f / 2) * 80 + xcenter);
 yminute =  (int)(Math.sin(minute * 3.14f / 30 - 3.14f / 2) * 80 + ycenter);
 xhour =  (int)(Math.cos((hour * 30 + minute / 2) * 3.14f / 180 - 3.14f / 2) * 60 + xcenter );
 yhour =  (int)(Math.sin((hour * 30 + minute / 2) * 3.14f / 180 - 3.14f / 2) * 60 + ycenter);



if (xminute != lastxm || yminute != lastym)
{
g.drawLine(xcenter, ycenter - 1, lastxm , lastym);
g.drawLine(xcenter - 1, ycenter, lastxm, lastym);
}
if (xhour != lastxh || yhour != lastyh)
{
g.drawLine(xcenter, ycenter - 1, lastxh, lastyh);
g.drawLine(xcenter - 1, ycenter, lastxh, lastyh);
}

g.setColor(Color.black);
g.drawLine(xcenter, ycenter - 1, xminute  , yminute  );
g.drawLine(xcenter - 1, ycenter, xminute   , yminute  );
g.setColor(Color.black);
g.drawLine(xcenter, ycenter - 1, xhour , yhour  );
g.drawLine(xcenter - 1, ycenter, xhour , yhour);

lastxm = xminute;
lastym = yminute;
lastxh = xhour;
lastyh = yhour;
}


  public void start() {
    if (thread == null) {
      thread = new Thread(this);
      thread.start();
    }
  }
  public void stop()
{


thread = null;
}

  public void run() {
     while (thread != null) {
      try {
        Thread.sleep(100);

      } catch (InterruptedException e) {
      }
      repaint();
    }
    thread = null;

  }

  public void update(Graphics g) {
      paint(g);
  }
      public static void main(String[] args) {
        new Analogclock();

    }
}

the other sub classes
Code:
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Digitalclock extends JPanel{


 JLabel label;
 SimpleDateFormat f = new SimpleDateFormat("HH:mm:ss");


public Digitalclock() {
setSize(75,150);
label = new JLabel();

this.add(label);

new Thread(){


public void run(){
while (true) {

label.setText(String.valueOf(f.format(new Date())));

try {
Thread.sleep(1000);
} catch (Exception e) {

}
}
}
}.start();
    }
  }

Code:
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class DigitalclockAM extends JPanel{


 JLabel label;
 SimpleDateFormat fam = new SimpleDateFormat("hh:mm:ss a");


public DigitalclockAM() {
setSize(75,150);
label = new JLabel();

this.add(label);

new Thread(){


public void run(){
while (true) {

label.setText(String.valueOf(fam.format(new Date())));

try {
Thread.sleep(1000);
} catch (Exception e) {

}
}
}
}.start();
    }
  }
 

kaoZ

Top Contributor
impleDateFormat date = new SimpleDateFormat("MMMMMMMMMMMM:dd:yyyy")

Thats not an supported fromat btw..

take some screenshots plz , if you have some problems with your layout.

when i run my program the analog clock does not work propely there is someting wrong

What is the exact Problem ? this isn't a usefull trouble discription ......

please paste some error Code if it exists, or try to discripe which component of your code are dont work well

:)
 

hhm136

Mitglied
if i put the start method after set the clock to the upper panel
the clock be come like this

but if i remove the start method it set fine but thr analong does not move
 

kaoZ

Top Contributor
Try this, its an example of a StopWatch i found on the Internet, but so you could see how you can realise a Watch, and its functions.

Java:
import java.awt.BasicStroke;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.AffineTransform;
import java.awt.geom.Line2D;

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

public class Stoppuhr extends JFrame implements ActionListener { 
	private static final long serialVersionUID = 1L;
	
	private JButton startButt, stopButt, resetButt; 
    private UhrPanel panel; 

    public Stoppuhr() { 
        panel = new UhrPanel(); 
        panel.setRunning(false); 
        this.add(panel, BorderLayout.CENTER); 

        startButt = new JButton("start"); 
        startButt.addActionListener(this); 
        stopButt = new JButton("stop"); 
        stopButt.addActionListener(this); 
        resetButt = new JButton("reset"); 
        resetButt.addActionListener(this); 
        JPanel buttPanel = new JPanel(new FlowLayout()); 
        buttPanel.add(startButt); 
        buttPanel.add(stopButt); 
        buttPanel.add(resetButt); 
        this.add(buttPanel, BorderLayout.SOUTH); 

        this.setSize(300, 300); 
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
        this.setVisible(true); 
    } 

    public static void main(String[] args) { 
        new Stoppuhr(); 
    } 

    public void actionPerformed(ActionEvent e) { 
        if (e.getSource() == startButt) { 
            panel.setRunning(true); 
        } 
        if (e.getSource() == stopButt) { 
            panel.setRunning(false); 
        } 
        if (e.getSource() == resetButt) { 
            panel.setIndex(0); 
            panel.setRunning(false); 
            panel.repaint(); 
        } 
    } 
} 

class UhrPanel extends JPanel implements Runnable { 
	private static final long serialVersionUID = 1L;

	public UhrPanel() { 
        start(); 
    } 

    double winkel = Math.PI / -30; 
    int index = 0; 
    boolean running; 
    private Thread thread; 

    public void paintComponent(Graphics g) { 
        Graphics2D g2d = (Graphics2D) g; 
        g2d.setColor(Color.WHITE); 
        g2d.fillRect(0, 0, this.getWidth(), this.getHeight()); 

        AffineTransform at = new AffineTransform(); 
        at.setToScale(1, -1); 
        AffineTransform aff = new AffineTransform(); 
        aff.setToTranslation(this.getWidth() / 2, this.getHeight() / 2); 
        at.preConcatenate(aff); 
        g2d.transform(at); 

        // Zifferzeichen 
        g2d.setColor(Color.RED); 
        Line2D.Double ziffer = new Line2D.Double(0, 60, 0, 70); 
        Shape zShape; 
        for (int i = 0; i < 61; i += 5) { 
            at.setToRotation(winkel * i); 
            zShape = at.createTransformedShape(ziffer); 
            g2d.draw(zShape); 
        } 

        // Zifferzeichen an den Positionen 12/3/6/9 
        g2d.setColor(Color.BLACK); 
        g2d.setStroke(new BasicStroke(3)); 
        Line2D.Double viertel = new Line2D.Double(0, 60, 0, 70); 
        Shape qShape; 
        for (int i = 0; i < 61; i += 15) { 
            at.setToRotation(winkel * i); 
            qShape = at.createTransformedShape(viertel); 
            g2d.draw(qShape); 
        } 

        // Zeiger 
        g2d.setColor(Color.BLACK); 
        Line2D.Double line = new Line2D.Double(0, 0, 0, 50); 
        at.setToRotation(winkel * index, 0, 0); 
        Shape s = at.createTransformedShape(line); 
        g2d.draw(s); 

    } 

    public void start() { 
        if (thread == null) { 
            thread = new Thread(this); 
            thread.start(); 
        } 
    } 

    public void setRunning(boolean running) { 
        this.running = running; 
    } 

    public void setIndex(int i) { 
        this.index = i; 
    } 

    public void run() { 
        while (true) { 
            if (running) { 
                index++; 
                index = index > 60 ? 1 : index; 
                repaint(); 
            } 
            try { 
                Thread.sleep(1000); 
            } catch (InterruptedException e) { 
                e.printStackTrace(); 
            } 
        } 
    } 
}

if i put the start method after set the clock to the upper panel
the clock be come like this

Which Layoutmanager do you use for the upper Panel ?
 
Zuletzt bearbeitet:

kaoZ

Top Contributor
I think its starts to destroy the clock animation when the Clock ticks the first time , right ?
 
Zuletzt bearbeitet:
Ä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
Z GUI-Problem, finde meinen Fehler nicht! AWT, Swing, JavaFX & SWT 11
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

Ähnliche Java Themen

Neue Themen


Oben