Advertisement
Oslapas

Untitled

Feb 10th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. public class Labels {
  2.  
  3.     private GridPane gridPane = new GridPane();
  4.  
  5.     public GridPane getGridPane() {
  6.         return gridPane;
  7.     }
  8.  
  9.     public void addLabel(String labelname, int columnIndex, int rowIndex) {
  10.         Label label = new Label();
  11.         GridPane.setColumnIndex(label, columnIndex);
  12.         GridPane.setRowIndex(label, rowIndex);
  13.         label.setId(labelname+columnIndex);
  14.         label.setText("test");
  15.  
  16.         gridPane.getChildren().add(label);
  17.     }  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement