0

只是为了测试,我想要一个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);

目前还没有结果...

4

2 回答 2

1

对于在窗格中添加节点,首先你必须初始化它......试试这个......它的工作。

AnchorPane anch = new AnchorPane();
Button btn = new Button("anshul");
anch.getChildren().add(btn);
于 2013-10-31T12:17:39.703 回答
0
Anchorpane pane=new Anchorpane();  
Label lbl_user=new Label("Username");  
Textfield txt=new Textfield();  
AnchorPane.setTopAnchor(lbl_user, 10.0);  
AnchorPane.setRightAnchor(lbl_user 10.0);  
AnchorPane.setTopAnchor(txt, 40.0);  
AnchorPane.setRightAnchor(txt,10.0);  
panegetChildren().addAll(lbl_user,txt);
于 2014-02-25T08:25:32.627 回答