Context menu insight JavaFX Task
问题 I have a problem with Context menu. Following this topic I found that there is a limitation when I try to load Context menu insight JavaFX Task. I tested to implement Platform.RunLater() but without any success. static ContextMenu contextMenuPanel; public static BorderPane stageContextMenu(BorderPane bp) { Platform.runLater(new Runnable() { @Override public void run() { contextMenuPanel = new ContextMenu(); } }); MenuItem item1 = new MenuItem("About"); item1.setOnAction(new EventHandler