Search in sources :

Example 1 with DesignerFxComposite

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();
}
Also used : BorderPane(javafx.scene.layout.BorderPane) DesignerFxComposite(com.kyj.fx.voeditor.visual.component.pmd.DesignerFxComposite) Scene(javafx.scene.Scene)

Aggregations

DesignerFxComposite (com.kyj.fx.voeditor.visual.component.pmd.DesignerFxComposite)1 Scene (javafx.scene.Scene)1 BorderPane (javafx.scene.layout.BorderPane)1