如何在HBox中定位按钮 - JAVAFx

时间:2014-12-25 16:17:18

标签: javafx javafx-8

我是JAVAfx的新手,我试图编写Web浏览器代码。我面临的问题是: - 我想将按钮出现在屏幕左下方的右下角。

我正在尝试此代码,但它无法正常工作。有人请帮忙

Button Developer = new Button(); 
Developer.setAlignment(Pos.BOTTOM_RIGHT);

这是屏幕截图:http://i.stack.imgur.com/4RTpr.png

由于

1 个答案:

答案 0 :(得分:2)

您应该可以在HBox而不是Button本身设置对齐方式。

Button developer = new Button(); 

HBox hbox = new HBox();
hbox.setAlignment(Pos.BOTTOM_RIGHT);
hbox.getChildren().add(developer);