只是为了测试,我想要一个Button
到目前为止Node
在 a 内的 a TitledPane
(我知道它包含一个AnchorPane
)。
这是我正在尝试的方法的一般代码:
@FXML private void alterarTitledPane(MouseEvent event) {
if (event.isShiftDown()) {
// Here is where I code for adding a button inside TitledPane
}
if (!titledPane.isExpanded()) {
titledPane.setExpanded(true);
titledPane.setText("Expandido");
}
else {
titledPane.setExpanded(false);
titledPane.setText("No expandido");
}
}
这是我为实现它而尝试的两种选择:
备选方案 1
((AnchorPane)titledPane.getContent()).getChildren().add(button2);
button2.toFront();
button2.setVisible(true);
备选方案 2
Group a = new Group(button2);
((AnchorPane)titledPane.getContent()).getChildren().add(a);
button2.toFront();
button2.setVisible(true);
目前还没有结果...