无法从控制器 class 执行按钮样式方法(FXML 按钮)。如何设置 FXML 按钮的样式而不为此使用 CSS?

Can't execute button style methods (FXML button) from controller class. How can I setstyles of a FXML button and not using CSS for this?

我不能简单地在 if-then-语句或方法中设置按钮的样式。

它编译得很好,但在 运行 应用程序时出错。这个想法是在参数 "setnrColor" 等于 7 时为按钮着色。 该按钮分配有@FXML 标签。当我不使用引用按钮的 setStyle / setTextFill 方法时,逻辑运行良好。

当 运行 时,我收到以下错误:线程 "JavaFX Application Thread" java.lang.NullPointerException 中出现异常。当调用“setstyle 方法时会发生这种情况。

说这是不可能的简单解释是有道理的。到目前为止,我的所有搜索都没有得到这个答案。任何帮助表示赞赏。

public class FXMLDocumentController implements Initializable {

@FXML private Label label; 
@FXML private Button btn;
@FXML private TextField text;
private int NrColor; 

public void setButtonColor (int setnrColor){

boolean bln1;

NrColor = setnrColor;

if(NrColor==7){ //Expression is of type boolean
System.out.println("SAME NUMBER: SET COLOR BUTTON TO BLACK");
//btn.setStyle("-fx-base:black;"); //THIS LINE DOESNT WORK
bln1 = true; 
//btn.getStyleClass().remove("armed");
}  
else {
System.out.println("DIFFERENT NUMBER: SET COLOR BUTTON TO RED");
//btn.setStyle("-fx-base:red;"); //DOESNT WORK
bln1 = false; 
trigger();

}

System.out.println("OUTPUT =" + bln1);

}


java.lang.NullPointerException:
at test_issue.FXMLDocumentController.trigger(FXMLDocumentController.java:64)
at test_issue.FXMLDocumentController.setButtonColor(FXMLDocumentController.java:53)
at test_issue.FlashingLight.lambda$start(FlashingLight.java:25)
at com.sun.scenario.animation.shared.TimelineClipCore.visitKeyFrame(TimelineClipCore.java:239)
at com.sun.scenario.animation.shared.TimelineClipCore.playTo(TimelineClipCore.java:180)
at javafx.animation.Timeline.impl_playTo(Timeline.java:176)
at javafx.animation.AnimationAccessorImpl.playTo(AnimationAccessorImpl.java:39)
at com.sun.scenario.animation.shared.FiniteClipEnvelope.timePulse(FiniteClipEnvelope.java:124)
at javafx.animation.Animation.impl_timePulse(Animation.java:1102)
at javafx.animation.Animation.lambda$timePulse(Animation.java:186)
at java.security.AccessController.doPrivileged(Native Method)
at javafx.animation.Animation.timePulse(Animation.java:185)
at com.sun.scenario.animation.AbstractMasterTimer.timePulseImpl(AbstractMasterTimer.java:344)
at com.sun.scenario.animation.AbstractMasterTimer$MainLoop.run(AbstractMasterTimer.java:267)
at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:506)
at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:490)
at com.sun.javafx.tk.quantum.QuantumToolkit.lambda$runToolkit4(QuantumToolkit.java:319)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null8(WinApplication.java:191)
at java.lang.Thread.run(Thread.java:745)

/////////////////////////////////////////////
<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="test_issue.FXMLDocumentController">
<children>
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" />
<Button fx:id="btn" layoutX="104.0" layoutY="72.0" mnemonicParsing="false" prefHeight="56.0" prefWidth="136.0" text="Button" />
<TextField fx:id="text" layoutX="41.0" layoutY="14.0" promptText="HALLO" />
</children>
</AnchorPane>

你不应该创建控制器的对象 class,你需要从加载器中提取 if:

FXMLLoader loader = new FXMLLoader(getClass().getResource("/main.fxml"));
AnchorPane root = loader.load();

FXMLDocumentController controller = loader.getController();
controller.setButtonColor(...);