1
我有這個構造函數,我試圖用標籤填充gridpane。 我碰到了一堵磚牆,不知道什麼是錯的。 我需要在1行中創建13個標籤。用標籤填充GridPane
構造:
public class Labels {
@FXML
GridPane gridPane = new GridPane();
public Labels(String labelname, int columnIndex, int rowIndex) {
Label label = new Label();
gridPane.setColumnIndex(label, columnIndex);
gridPane.setRowIndex(label, rowIndex);
label.setId(labelname+columnIndex);
label.setVisible(true);
label.setText("test");
}
}
迴路控制器中:
for(int i2=0; i2<13; i2++){
Labels labels = new Labels("label", i2, 3);
}