start with ui

main
Obai Albek 2025-09-12 16:49:51 +02:00
parent ef2c82aa46
commit c0b9b33eba
2 changed files with 8 additions and 3 deletions

View File

@ -0,0 +1,5 @@
package domain;
public class UserGruppen {
}

View File

@ -1,5 +1,6 @@
package ui;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
@ -11,15 +12,14 @@ public class Chat extends JFrame {
private JPanel contentPane;
public Chat() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 567, 400);
setBounds(100, 100, 650, 410);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
}
}