0
我想在此Jframe中添加滾動。我試過了不同的代碼,但沒有一個能夠幫助。 請幫助我在此JFrame中添加滾動。 這是簡單的代碼。我嘗試過JPanel,但它也不能正常工作。如何在鞦韆上添加滾動到JFrame
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.event.*;
class classes extends JFrame implements ActionListener
{
JLabel l1,l2,l3,l4,l5,l6,l7,l8;
classes()
{
con=getContentPane();
setTitle("Scroll");
setLayout(null);
setSize(150,150);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
l1=new JLabel("1");
l2=new JLabel("2");
l3=new JLabel("3");
l4=new JLabel("4");
l5=new JLabel("5");
l6=new JLabel("6");
l7=new JLabel("7");
l8=new JLabel("8");
l1.setBounds(50,50,100,30);
l2.setBounds(50,100,100,30);
l3.setBounds(50,150,100,30);
l4.setBounds(50,200,100,30);
l5.setBounds(50,250,100,30);
l6.setBounds(50,300,100,30);
l7.setBounds(50,350,100,30);
l8.setBounds(50,400,100,30);
add(l1);
add(l2);
add(l3);
add(l4);
add(l5);
add(l6);
add(l7);
add(l8);
setVisible(true);
}
}
[很多重複的問題/答案!](https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=site:stackoverflow.com+java+add + jscrollpane + to + jframe&*) –
下面是一個主要問題:'setLayout(null);'。閱讀教程並學習使用佈局管理器。沒有它們,JScrollPanes將不起作用。 –
如果要將整個窗口內容放入JScrollPane,您可能需要重新考慮佈局,並可能將其分割爲JTabbedPane或CardLayout中的卡片。 – VGR