Hallo .
Ich hab da mal wieder ein Layout prob.
Es geht um JSplitPane.
obwohl ich eindeutig einen Horizontalen Split eintrage. erhalte ich einen Vertikalen??
Ich hab da mal wieder ein Layout prob.
Es geht um JSplitPane.
obwohl ich eindeutig einen Horizontalen Split eintrage. erhalte ich einen Vertikalen??
Code:
JScrollPane listscroll = new JScrollPane(liste);
listscroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
JScrollPane xmlscroll = new JScrollPane(tree);
xmlscroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
xmlscroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
JPanel textpanel = new JPanel(new BorderLayout(5, 5));
splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
listscroll, xmlscroll);
splitPane.setPreferredSize(new Dimension(400, 200));
liste.setPreferredSize(new Dimension(80, 500));
liste.addListSelectionListener(this);
datei.addActionListener(this);
splitPane.setOneTouchExpandable(true);
splitPane.setDividerLocation(150);
mal= new NewScale();
mal.addMouseListener(this);
mal.addMouseMotionListener(this);
mal.setSize(500,500);
getContentPane().add(buttonleiste, BorderLayout.NORTH);
getContentPane().add(mal, BorderLayout.CENTER);
getContentPane().add(splitPane, BorderLayout.EAST);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(800, 600);
setLocation(100, 100);