Good Morning!
I created a Layout at the left side of the screen as a navigation-panel. Also i use Edges to resize the panel, but only at the right site.
Example Code:
Since i only use the right edge to resize, i dont want to waste space displaying the other three edges.
Is there a way, to display only the right Edge?
Thank you in advance!
I created a Layout at the left side of the screen as a navigation-panel. Also i use Edges to resize the panel, but only at the right site.
Example Code:
VLayout NavigationBar = new VLayout();
...
NavigationBar.setCanDragResize(true);
NavigationBar.setShowEdges(true);
NavigationBar.setEdgeSize(10);
NavigationBar.setEdgeMarginSize(10);
NavigationBar.setResizeFrom(EdgeName.R);
...
NavigationBar.setCanDragResize(true);
NavigationBar.setShowEdges(true);
NavigationBar.setEdgeSize(10);
NavigationBar.setEdgeMarginSize(10);
NavigationBar.setResizeFrom(EdgeName.R);
Is there a way, to display only the right Edge?
Thank you in advance!
Comment