You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a requirement where I want to be able to dynamically resize two columns or two rows using a vertical or horizontal (respectively) draggable handle.
The width of the splitter needs to be able to be set.
A splitter with a width of 0 is valid. Some users might not want visual cues other then the mouse.
The width of the hover-over area needs to be settable (>=1), i.e. the area that allows the splitter to show the 'resize' mouse pointer to allow dragging with the mouse.
Would be nice:
Keyboard focusable, and controllable with left/right or up/down cursor keys.
Notes:
there are various things that could happen when the container the split pane is in is resized. e.g. resize both sides proportionally or keep the splitter handle at it's fixed position so that either the left or right pane resizes. likely similar to how GridDimension works.
The text was updated successfully, but these errors were encountered:
I have a requirement where I want to be able to dynamically resize two columns or two rows using a vertical or horizontal (respectively) draggable handle.
In JavaFx this is a SplitPane, details here: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitPane.html
Usage something like this:
Example screenshot from JavaFX
Requirements:
Would be nice:
Notes:
GridDimension
works.The text was updated successfully, but these errors were encountered: