use of com.kyj.fx.voeditor.visual.component.pmd.DesignerFxComposite in project Gargoyle by callakrsos.
the class PMDDesignerLoader method start.
/* (non-Javadoc)
* @see javafx.application.Application#start(javafx.stage.Stage)
*/
@Override
public void start(Stage primaryStage) throws Exception {
// SwingNode swingContainerSplitPane = new SwingNode();
// SwingNode swingMenuBar = new SwingNode();
BorderPane root = new DesignerFxComposite();
// root.setBottom(new Label("javafx"));
// createSwingContent(swingContainerSplitPane, );
// createSwingContent(swingMenuBar, designerFx.getJMenuBar());
Scene value = new Scene(root, 1200, 800);
primaryStage.setScene(value);
primaryStage.show();
}
Aggregations