JavaFX无法正确呈现,但我的基本代码可能是错误的

时间:2018-04-02 18:26:26

标签: animation javafx mouse render rectangles

我正在编写一个简单的形状碰撞检测器,但我注意到我使用鼠标移动的矩形在某些窗口的区域消失了。 我无法弄清楚原因。

Here您可以看到视频以及我使用的代码下方。 有什么建议吗?

public class FXMLControl implements Initializable {
    @FXML private TableView tblRooms;
    @FXML private TableColumn roomNo;
    @FXML private TableColumn capacity;
    @FXML private TableColumn type;

    @FXML private void onViewRooms(ActionEvent event) throws IOException {
        MainApp main = new MainApp();
        main.viewRooms();
        tblRooms.setEditable(true);
        ObservableList<Room> listo = FXCollections.observableArrayList(main.rooms);
        tblRooms.setItems(listo);
}}

1 个答案:

答案 0 :(得分:-2)

我通过将另一个Rectangle作为背景来解决。