我正在尝试将单击事件侦听器添加到 TableView 的所有列标题的标签中,如下所示:
for (final Node header : tblView.lookupAll(".column-header > .label")) {
if ((header != null) && (header instanceof Label)) {
final Label headerLabel = (Label) header;
// ...
}
}
现在,问题是如果我在 Controller 的 initialize() 函数中执行此操作,则尚未渲染场景图,并且上述代码将无法工作。因此我的问题是:是否存在某种渲染后事件?
提前谢谢了。