FXML文件中的getHostServices()。showDocument()

FXML文件中的getHostServices()。showDocument(),第1张

FXML文件中的getHostServices()。showDocument()

您需要将传递

HostServices
Controller

密码:在

HostServices
中设置
Controller

HostServices hostServices ;public void setGetHostController(HostServices hostServices){    this.hostServices = hostServices;}

密码:传递

HostServices
Controller

FXMLLoader loader = new FXMLLoader(getClass().getResource("FXMLdocument.fxml"));Parent root = loader.load();FXMLdocumentController fXMLdocumentController = loader.getController();fXMLdocumentController.setGetHostController(getHostServices());

主要

import javafx.application.Application;import javafx.fxml.FXMLLoader;import javafx.scene.Parent;import javafx.scene.Scene;import javafx.stage.Stage;public class JavaFXApplication7 extends Application {    @Override    public void start(Stage stage) throws Exception {        FXMLLoader loader = new FXMLLoader(getClass().getResource("FXMLdocument.fxml"));        Parent root = loader.load();        FXMLdocumentController fXMLdocumentController = loader.getController();        fXMLdocumentController.setGetHostController(getHostServices());        Scene scene = new Scene(root);     stage.setScene(scene);        stage.show();    }        public static void main(String[] args) {        launch(args);    }}

控制者

import java.net.URL;import java.util.ResourceBundle;import javafx.application.HostServices;import javafx.event.ActionEvent;import javafx.fxml.FXML;import javafx.fxml.Initializable;import javafx.scene.control.Label;public class FXMLdocumentController implements Initializable {    HostServices hostServices;    @FXML    private Label label;    @FXML    private void handleButtonAction(ActionEvent event) {        hostServices.showdocument("www.google.com");    }    @Override    public void initialize(URL url, ResourceBundle rb) {        // TODO    }    public void setGetHostController(HostServices hostServices)    {        this.hostServices = hostServices;    }}

XML文件

<?xml version="1.0" encoding="UTF-8"?><?import java.lang.*?><?import java.util.*?><?import javafx.scene.*?><?import javafx.scene.control.*?><?import javafx.scene.layout.*?><AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication7.FXMLdocumentController">    <children>        <Button layoutX="126" layoutY="90" text="Click Me!" onAction="#handleButtonAction" fx:id="button" />        <Label layoutX="126" layoutY="120" minHeight="16" minWidth="69" fx:id="label" />    </children></AnchorPane>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5489601.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存