G
Guest
Gast
Moin zusammen,
wieder hab ich mal ein problem. ich möchte in eine JList eine JScrollpane einfuegen. wenn ich das mit einem borderLayout mache geht das ja so:
aber wie mache ich das in eienem GridBagLayout?das so aussieht:
vielen dank schon mal!
greetz
wieder hab ich mal ein problem. ich möchte in eine JList eine JScrollpane einfuegen. wenn ich das mit einem borderLayout mache geht das ja so:
Code:
Container contentPaneTextArea = new Container();
contentPaneTextArea.setLayout(new BorderLayout(1, 1));
listBox.setFont( new Font("Verdana", Font.ROMAN_BASELINE, 10) );
listBox.setForeground( Color.DARK_GRAY );
contentPaneTextArea.add( new JScrollPane( listBox ));
Code:
listBox = new JList();
addComponent( c, gbl, listBox,2, 2, 12, 6, 0 ,1.0);
listBox.setFont( new Font("Verdana", Font.ROMAN_BASELINE, 10) );
listBox.setForeground( Color.DARK_GRAY );
listBox.setListData(listVector);
listBox.addListSelectionListener(this);
greetz