gpt4 book ai didi

由于单独的线程,Javafx 无法附加上下文菜单

转载 作者:行者123 更新时间:2023-11-30 08:37:44 25 4
gpt4 key购买 nike

我类有一个听众。当插入比利时身份证并将姓名放在文本字段中时,它看起来会被激活。现在,当发生这种情况时,程序还应查看此名称是否已插入数据库,如果没有,则应附加一个样式为警告的上下文菜单。

当我尝试附加上下文菜单时出现错误,我知道代码可以正常工作,因为我在我的代码中的多个地方都使用过它。我收到以下错误:

错误

java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4
at com.sun.javafx.tk.Toolkit.checkFxUserThread(Toolkit.java:236)
at com.sun.javafx.tk.quantum.QuantumToolkit.checkFxUserThread(QuantumToolkit.java:423)
at javafx.stage.Window.setShowing(Window.java:921)
at javafx.stage.Window.show(Window.java:937)
at javafx.stage.PopupWindow.showImpl(PopupWindow.java:454)
at javafx.stage.PopupWindow.show(PopupWindow.java:399)
at javafx.scene.control.ContextMenu.doShow(ContextMenu.java:287)
at javafx.scene.control.ContextMenu.show(ContextMenu.java:262)
at util.Validation.attachNotFound(Validation.java:140)
at paginas.CheckOut$1.cardInserted(CheckOut.java:105)
at be.belgium.eid.event.CardAlivePromptTask.run(CardAlivePromptTask.java:79)

监听器

private final CardListener cl = new CardListener() {
@Override
public void cardInserted() {
//de laadcirkel wordt zichtbaar wanneer het programma begint met een kaart te lezen.
String fullName;
System.out.println("card connected.");
try {
laadcirkel.setVisible(true);
IDData data = id.getIDData();
//voornaam ophalen, de format is nodig aangezien de reader de eerste naam en de tweede naam geeft.
fullName = StringUtilities.format(data.get1stFirstname());

//achternaam ophalen
fullName = fullName + " " + data.getName();


text_id.setText(fullName);
text_id.autosize();

CheckInOut c = lijst.getByCheckInName(text_id.getText());
if (c != null) {
checkOut(c);
} else {
Validation.attachNotFound(text_id);
}
laadcirkel.setVisible(false);

//reset de layout om een visuele bug op te van in javafx.
laadcirkel.getParent().getParent().setStyle("-fx-font: " + font + "px Tahoma;");

} catch (EIDException ex) {
Logger.getLogger(AanmeldPagina.class.getName()).log(Level.SEVERE, null, ex);
}
}

当我调用 Validation.attachNotFound(text_id) 时出错了;

找不到附件

public static void attachNotFound(TextField field) {
field.setStyle("-fx-text-box-border: red ;-fx-focus-color: red ;");
MenuItem item = new MenuItem("Not found");
ContextMenu menu = new ContextMenu();
menu.getStyleClass().add("error");
menu.setAutoHide(true);
menu.getItems().add(item);
menu.show(field, Side.RIGHT, 10, 0);
field.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {
if (newValue) {
menu.show(field, Side.RIGHT, 10, 0);
}
});
}

我希望这可以通过一小段代码解决,并且我不必重写大部分程序,在此先感谢。

最佳答案

如果你将 attachNotFound 的主体包裹起来,就像......

Platform.runLater(new Runnable() {
@Override
public void run() {
...
}
});

...一切都会好起来的。

这确保放置到“...”的代码将在 JavaFX 线程上执行。 (来自 attachNotFound 的代码转到“...”的位置)

关于由于单独的线程,Javafx 无法附加上下文菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36978553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com