This commit is contained in:
ccunatbrule
2021-10-28 19:29:55 +02:00
parent 2c6e167d4c
commit e0ea19e1e3
740 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package vue.Formulaire;
import java.awt.Color;
import java.awt.Font;
import java.awt.GridLayout;
import java.util.ArrayList;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import controleur.Cours;
public class FormCours extends JPanel
{
private static final long serialVersionUID = 3315083316143792281L;
public FormCours()
{
this.setBounds(30, 80, 720, 330);
this.setBackground(new Color(222,220,203));
this.setLayout(null);
JLabel lbCours = new JLabel("Votre Profil");
lbCours.setBounds(350, 5, 300, 50);
lbCours.setFont(new Font(lbCours.getText(), Font.CENTER_BASELINE + Font.BOLD, 20));
this.add(lbCours);
JTextArea txtTitre = new JTextArea();
txtTitre.setBounds(20, 50, 300, 400);
//txtTitre.setBounds(x, y, width, height);
txtTitre.setEditable(false);
txtTitre.setBackground(new Color(222,220,203));
txtTitre.setFont(new Font(txtTitre.getText(), Font.PLAIN, 20));
// txtTitre.setAlignmentX(JTextArea.CENTER_ALIGNMENT);
txtTitre.setText( "\n Date : A");
this.add(txtTitre);
this.setVisible(true);
}
}