这是该计划的目标。
附图是目标。我无法获得日标题。我必须使用构造函数调用的2个方法。 buildUI和customizeUI。我试过使用for循环,我无法弄清楚间距。当我把它整天运行时,标题就在彼此之上。
Label[] a = {
new Label("S"), new Label("M"),
new Label("T"), new Label("W"),
new Label("T"), new Label("F"),
new Label("S")
};
for(int i = 0; i < a.length; i++)
{
p.getChildren().add(a[i]);
}
setCenter(p);
答案 0 :(得分:2)
Label[] a = {
new Label("S"), new Label("M"),
new Label("T"), new Label("W"),
new Label("T"), new Label("F"),
new Label("S")
};
for(int i = 0; i < a.length; i++) {
p.add(a[i], i, 0);
}
setCenter(p);
这应该有效。我猜p
是GridPane
的变量。这里p.add(a[i], i, 0);
我根据列和行索引添加标签。看看GridPane
documentation