简体   繁体   中英

Stretching out JScrollPane - Java

I have this structure:

<JFrame>
         <JPanel backgroundcolor = "pink">
            <JScrollPane>
                <JTable>!!!Data here !!!</JTable>
            </JScrollPane>
         </JPanel>
</JFrame>

How do i stretch the ScrollPane it to cover the full window without using setSize? This is how it looks like now: alt text http://img22.imageshack.us/img22/8491/17747996.png

Thanks!

Mmmph! Nobody offered a simple solution such as using BorderLayout as layout manager for my JScrollpane container!

Use setPreferredScrollableViewportSize() and a suitable layout.

Edit: You'll also need setFillsViewportHeight() , as discussed in Adding a Table to a Container .

I am not familiar with the XML file format.

If it is coded, you may need to code something like this:

JScrollPane1 = new JScrollPane();
JPanel1.add(JscrollPane1);
JScrollPane1.setBounds(5,29,636,122);

JTable1 = new JTable();    
JPanel1.add(JTable1);
JScrollPane1.setBounds(5,434,553,3097);
JScrollPane1.setViewportView(JTable1);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM