Questions tagged [multisplitpane]
4 questions
2
votes
2 answers
JXMultiSplitPane hiding node causes painting issues
When I hide a node of the JXMultiSplitPane, I encounter painting issues. The following SSCCE illustrates this behaviour:
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import…

Guillaume Polet
- 47,259
- 4
- 83
- 117
1
vote
2 answers
Swing layout manager/solution to replace dynamically created and nested split panes?
I'm working on a text editor in which the user is free to divide the editor window vertically or horizontally any number of times (ie, into any number of panes). A single window can be divided both vertically and horizontally (for example, 2 rows,…

the-konapie
- 601
- 3
- 10
1
vote
1 answer
FX 2.x : How do I remove SplitPane?
I can add SplitPane in a XYChart by clicking the "Add Pane" button, and it works fine.
Now I would like to remove SplitPane by clicking the "Remove pane" button.
Here is full code
public class SplitPaneFxTest extends Application {
SplitPane…

Alberto acepsut
- 1,972
- 10
- 41
- 87
0
votes
1 answer
How to add new Split (row) to a MultiSplitPane in Java?
I have a simple MultiSplitPane in java. It has 1 Row (split) and 2 nodes (Leaves) in it. How can I add another row under the existing one.
Here's the code that creates the MultiSplitPane and the 2 Leaves:
List children =
Arrays.asList(new…

Igor
- 1,532
- 4
- 23
- 44