Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 java fx 中有两个表。第一个是主人,当我从第一个表中选择一个项目时,它的详细信息必须显示在第二个表中。我需要一个可以知道选择了哪一行的事件。有什么建议么?
您可以尝试听听表格的选择模型的选定项属性
masterTable.getSelectionModel().selectedItemProperty().addListener(new ChangeListener() { @Override public void changed(ObservableValue observable, Object oldValue, Object newValue) { populateSecondTable(newValue); } });