2
으로 프레임에 더 첨부 된 관리 패널을 가지고// 여기에 관리자는 두 번째 탭으로 스크롤 막대를 추가하려는 프레임에있는 패널입니다.JTabbedPane에 스크롤 막대를 추가하는 방법. 기본적으로 나는 탭 (JTabbedPane)
import java.awt.Color;
import java.awt.Image;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollBar;
import javax.swing.JScrollPane;
public class admin extends JPanel
{
private static final long serialVersionUID = 1L;
JLabel lb;
Image image;
JScrollPane js;
public admin() //admin panel is invoked by a frame.
{
setBackground(Color.white);
add(new admsign()); // admsign is another panel located on admin which is a simple form.
// if you want me to post the code for admsign() then tell me.
}
}
// 생각하지 않아도됩니다.
에 추가됩니다 그
JPanel
주위JScollPane
포장. : D 이것이 제 문제를 설명하기에 충분하다고 생각합니다. – puprog은 나에게 꽤 명확한 질문처럼 보였다 ...! :) – Droj