use of com.kyj.fx.voeditor.visual.component.dock.pane.DockPane in project Gargoyle by callakrsos.
the class DockPaneExam method start.
/* (non-Javadoc)
* @see javafx.application.Application#start(javafx.stage.Stage)
*/
@Override
public void start(Stage primaryStage) throws Exception {
DockNode dockNode = new DockNode(new BorderPane(new Label("Master")), "hello m");
DockNode dockNode2 = new DockNode(new BorderPane(new Label("Slave")), "hello s");
// SplitPane root = new SplitPane();
DockPane dockPane = new DockPane();
dockNode2.dock(dockPane, DockPos.CENTER);
dockNode.dock(dockPane, DockPos.LEFT);
// root.getItems().add(dockPane);
Application.setUserAgentStylesheet(Application.STYLESHEET_MODENA);
DockPane.initializeDefaultUserAgentStylesheet();
primaryStage.setScene(new Scene(dockPane));
primaryStage.show();
}
Aggregations