我需要通过点击按钮在TabPane中显示一个或多个舞台,如下图所示
我的目标是在Swing中出现类似于JInternalFrame的情况:如何实现这一目标? 我无法将阶段作为子项添加到选项卡窗格中。
如果无法做到这一点,还有什么其他解决方案?我想在舞台上安装SplitPanes。
由于
PS我正在使用Win7,NetBeans 7.4 Beta(Build 201307092200),SceneBuilder 1.1
编辑:以下是一些VFXWindows css更改后的显示方式
有一件事值得注意:我必须添加一个节点(在我的情况下是一个带有prefSize(0,0)的HBox,否则我无法移动o调整第一个窗口的大小,只有第一个窗口。
最后,我找不到一种方法来设置全屏窗口(最大化)。
答案 0 :(得分:3)
这里我在Tabs中添加jfxtras窗口的示例,我只修改example。
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.stage.Stage;
import jfxtras.labs.scene.control.window.CloseIcon;
import jfxtras.labs.scene.control.window.MinimizeIcon;
import jfxtras.labs.scene.control.window.Window;
public class WindowInTab extends Application {
private static int counter = 1;
private void init(Stage primaryStage) {
TabPane tabPane = new TabPane();
Tab tab = generateTab("Windows...");
Tab anotherTab = generateTab("More Windows");
tabPane.getTabs().addAll(tab, anotherTab);
primaryStage.setResizable(true);
primaryStage.setScene(new Scene(tabPane, 600, 500));
}
private Tab generateTab(String tabName) {
Tab tab = new Tab(tabName);
final Group root = new Group();
tab.setContent(root);
Button button = new Button("Add more windows");
root.getChildren().addAll(button);
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent arg0) {
// create a window with title "My Window"
Window w = new Window("My Window#"+counter);
// set the window position to 10,10 (coordinates inside canvas)
w.setLayoutX(10);
w.setLayoutY(10);
// define the initial window size
w.setPrefSize(300, 200);
// either to the left
w.getLeftIcons().add(new CloseIcon(w));
// .. or to the right
w.getRightIcons().add(new MinimizeIcon(w));
// add some content
w.getContentPane().getChildren().add(new Label("Content... \nof the window#"+counter++));
// add the window to the canvas
root.getChildren().add(w);
}
});
return tab;
}
public double getSampleWidth() {return 600;}
public double getSampleHeight() {return 500;}
@Override
public void start(Stage primaryStage) throws Exception {
init(primaryStage);
primaryStage.show();
}
public static void main(String[] args) {launch(args);}
}
我不知道这是不是你想要的。希望它有所帮助!