Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @FXML
  2. private ToggleButton tbl;
  3.  
  4. @FXML
  5. private void handleButtonAction(ActionEvent event) {
  6. if(tbl.isSelected())
  7. {
  8. label.setText("Przycisk włączony");
  9. }else
  10. {
  11. label.setText("Przycisk wyłączony");
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement