如何在JavaFX中定义自己的自定义控件?
假设我有一个自定义控件,为了简单起见,我们只需要将VBox
包含两个Button
,然后调用整个事件CustomButton
CustomButton.fxml
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.VBox?>
<VBox>
<Button text="Custom Button A"/>
<Button text="Custom Button B"/>
</VBox>
现在说我的根布局看起来像这样,我特别希望能够使用CustomButton
,就像它是Label
或常规Button
一样。
MainView.fxml
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.control.Button?>
<HBox>
<Button text="Main Button"></Button>
<CustomButton />
</HBox>
Main.java
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("MainView.fxml"));
primaryStage.setScene(new Scene(root));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
目前,这导致
Exception in thread "main" java.lang.RuntimeException: Exception in Application start method
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$155(LauncherImpl.java:182)
at java.lang.Thread.run(Thread.java:745)
Caused by: javafx.fxml.LoadException: CustomButton is not a valid type.
为了使用CustomButton
作为适当的控件,我需要更改哪些内容?
答案 0 :(得分:1)
我认为这个问题在CustomControl已经有了答案,为了在FXML中使用自定义组件,你必须在容器中包含表达式fx:include
作为例子。 :
<fx:include source="CustomButton.fxml"/>
在这种情况下,组件以图形添加,您可以使用自己的控制器来处理它,这里是tutoriel fx:include