1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
dechif.addActionListener(this);
detail=new JTextArea("Détails : ",15,63);
detail.setBounds(new Rectangle(50, 20, 250, 200));// ///////////
detail.setLineWrap(true);
detail.setWrapStyleWord(true);
JScrollPane scroll1 = new JScrollPane();
scroll1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
scroll1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
scroll1.setViewportView(detail);
scroll1.doLayout();
pan5.add(detail);
pan5.add(scroll1, BorderLayout.EAST);
contenu.add(pan5); |