我創建了一個新的自定義控件,其中包含標籤,文本字段和一個按鈕。如何在FXML文件中設置自定義控件的Button「onAction」方法?在FXML文件中設置自定義控件的按鈕「onAction」方法?
示例代碼:
<BorderPane fx:controller="fxmlexample.MyController"
xmlns:fx="http://javafx.com/fxml">
<top>
<MyCustomComponent onButtonAction="#myCustomButtonAction">
</MyCustomComponent>
</top>
您需要從您的自定義控件暴露一個方法,該方法觸發按鈕,然後在FXML中使用它。 – ItachiUchiha