Daily Shaarli

All links of one day in a single page.

July 17, 2021

How can I do some action when one specific Tab is selected using Javafx - Stack Overflow
thumbnail

tabPresentation.setOnSelectionChanged(new EventHandler<Event>() {
@Override
public void handle(Event t) {
if (tabPresentation.isSelected()) {
comboBoxPresYear.setVisible(true);
lblPresYear.setVisible(true);
}
}
});