在JavaFX 2.0中的节点上居中标签

时间:2011-10-13 16:17:59

标签: java javafx javafx-2

我希望能够在节点上显示一个特定标签的节点 - 例如。圆形或矩形节点,例如标签位于中心。这似乎应该是微不足道的,我确信它是,但网上相对稀疏的文档/教程意味着我似乎无法找到答案!

目前我可以在节点上显示标签没问题(默认情况下它会出现,所以标签的左上角在中心开始,这不是我想要的)或设置标签显示在右侧节点(通过为“特定节点”设置标签)但不将其放在中间位置!任何人都能对这一点有所了解吗?

1 个答案:

答案 0 :(得分:5)

我打赌你在寻找布局以外的东西,但StackPane提供了这种类型的功能。

从教程:Working with Layouts

  

StackPane

     

StackPane布局窗格将所有节点放在一个节点内   堆栈,每个新节点都添加在上一个节点的顶​​部。这个   布局模型提供了一种在形状或图像上叠加文本的简便方法   或重叠常见形状以创建复杂形状。图1-6   显示通过在顶部堆叠问号创建的帮助图标   一个渐变背景的矩形。

enter image description here

教程中的代码

示例1-4创建堆栈窗格

StackPane stack = new StackPane();
Rectangle helpIcon = new Rectangle(35.0, 25.0);
helpIcon.setFill(new LinearGradient(0,0,0,1, true, CycleMethod.NO_CYCLE,
new Stop[]{
new Stop(0,Color.web("#4977A3")),
new Stop(0.5, Color.web("#B0C6DA")),
new Stop(1,Color.web("#9CB6CF")),}));
helpIcon.setStroke(Color.web("#D0E6FA"));
helpIcon.setArcHeight(3.5);
helpIcon.setArcWidth(3.5);

Text helpText = new Text("?   ");
helpText.setFont(Font.font("Amble Cn", FontWeight.BOLD, 18));
helpText.setFill(Color.WHITE);
helpText.setStroke(Color.web("#7080A0")); 

stack.getChildren().addAll(helpIcon, helpText);
stack.setAlignment(Pos.CENTER_RIGHT);     // Right-justify nodes in stack

HBox.setHgrow(stack, Priority.ALWAYS);    // Give stack any extra space
hbox.getChildren().add(stack);            // Add to HBox from Example 1-2