jScrollPane Inhalte

hury

Erfahrenes Mitglied
Hallo,

ich habe ein Panel, auf diesem befindet sich ein jScrollPane. In den ScrollPane will ich jetzt Inhalte hinzufügen. Dafür benötige ich den GroupLayout im ScrollPane. Wie kann ich das setzen?

Danke

mein Code:

Code:
import javax.swing.GroupLayout;
import javax.swing.JComponent;
import javax.swing.JScrollPane;
import javax.swing.WindowConstants;
import javax.swing.SwingUtilities;


public class View extends javax.swing.JFrame {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private JScrollPane jScrollPane1;

	{
		//Set Look & Feel
		try {
			javax.swing.UIManager.setLookAndFeel("com.jgoodies.looks.plastic.Plastic3DLookAndFeel");
		} catch(Exception e) {
			e.printStackTrace();
		}
	}

	/**
	* Auto-generated main method to display this JFrame
	*/
	public static void main(String[] args) {
		SwingUtilities.invokeLater(new Runnable() {
			public void run() {
				View inst = new View();
				inst.setLocationRelativeTo(null);
				inst.setVisible(true);
			}
		});
		
	}
	
	public View() {
		super();
		initGUI();
	}
	
	private void initGUI() {
		try {

			GroupLayout thisLayout = new GroupLayout((JComponent)getContentPane());
			getContentPane().setLayout(thisLayout);
			setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
			{
				jScrollPane1 = new JScrollPane();
			}
			thisLayout.setVerticalGroup(thisLayout.createSequentialGroup()
				.addContainerGap(107, 107)
				.addComponent(jScrollPane1, 0, 189, Short.MAX_VALUE)
				.addContainerGap());
			thisLayout.setHorizontalGroup(thisLayout.createSequentialGroup()
				.addContainerGap()
				.addComponent(jScrollPane1, 0, 668, Short.MAX_VALUE)
				.addContainerGap());

			pack();
		} catch (Exception e) {
			e.printStackTrace();
		}
				
	}

}
 
Zurück