See: Description
Interface | Description |
---|---|
AccordionResizeStrategy |
Resize strategy for TitledPanes in AccordionCustom.
|
DragResizeMod.OnDragResizeEventListener |
Class | Description |
---|---|
AccordionCustom |
Custom accordion pane with multi expanded controls.
|
AllResizeStrategy |
Resize strategy that resizes all panels to the right/bottom.
|
DragResizeMod |
************* How to use ************************
Rectangle rectangle = new Rectangle(50, 50);
rectangle.setFill(Color.BLACK);
DragResizeMod.makeResizable(rectangle, null);
Pane root = new Pane();
root.getChildren().add(rectangle);
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
************* OnDragResizeEventListener **********
You need to override OnDragResizeEventListener and
1) preform out of main field bounds check
2) make changes to the nodeToListen
(this class will not change anything in nodeToListen coordinates)
There is defaultListener and it works only with Canvas nad Rectangle
|
NeighboringResizeStrategy |
Resize strategy that resizes two panels at a time.
|
TitledPaneCustom |
Custom Titled Pane.
|
Enum | Description |
---|---|
DragResizeMod.S | |
TitledPaneOrientation |
Pane orinatation in AccordionCustom.
|
Copyright © 2023. All rights reserved.