- 309 名前:デフォルトの名無しさん mailto:sage [2009/09/06(日) 22:29:04 ]
- public class Hoge extends JPanel {
public static void main(String[] args) { JFrame frame = new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.add(new Hoge()); frame.pack(); frame.setVisible(true); } private JScrollBar scrollBar = new JScrollBar(Adjustable.VERTICAL); public Hoge() { setBackground(Color.white); setPreferredSize(new Dimension(300, 300)); add(scrollBar,BorderLayout.EAST); } } なんで、スクロールバーが右側にならないんですか
|

|