使用FXML在JavaFX下全屏显示

时间:2014-04-04 10:27:54

标签: javafx javafx-2

我已经问过这个问题,但没有回答。

如何通过按下按钮在JavaFX中切换到全屏模式? 但该按钮是使用FXML(JavaFX Scene Builder)创建的。 (找不到符号(阶段)) 如果手动创建按钮,则可以正常工作。

public class Buch extends Application implements Initializable
{

@ Override
    public void start (Stage primaryStage) throws IOException
    {

        Stage stage = primaryStage;

        Parent root = FXMLLoader.load (getClass () getResource ("Buch.fxml").);

        Scene scene = new Scene (root);

        stage.setTitle ("Buch");
        stage.setScene (scene);
        stage.getIcons () add (new Image ("Icon.png"));
        / / stage.setFullScreen (true) / / Works
        stage.show ();



    }

    @ FXML
    public void fullscreen (ActionEvent event)
    {

        / / stage.setFullScreen (true) / / Does not work
        / / cannot find symbol (stage)

    }

作品:

public class Buch extends Application implements Initializable
{

@ Override
    public void start (Stage primaryStage) throws IOException
    {

        Stage stage = primaryStage;

        Parent root = FXMLLoader.load (getClass () getResource ("Buch.fxml").);

        Scene scene = new Scene (root);

        stage.setTitle ("Buch");
        stage.setScene (scene);
        stage.getIcons () add (new Image ("Icon.png"));
        stage.show ();

        btn.setOnAction (new EventHandler <ActionEvent> ()
        {
            public void handle (ActionEvent evt)
            {
                stage.setFullScreen (true);
            }

        });

    }

不起作用(当然?):

public class Buch extends Application implements Initializable
{

@ Override
    public void start (Stage primaryStage) throws IOException
    {

        Stage stage = primaryStage;

        Parent root = FXMLLoader.load (getClass () getResource ("Buch.fxml").);

        Scene scene = new Scene (root);

        stage.setTitle ("Buch");
        stage.setScene (scene);
        stage.getIcons () add (new Image ("Icon.png"));
        stage.show ();

* /
       @ FXML
    public void fullscreen (ActionEvent event)
    {

        stage.setFullScreen (true) / / Does not work
        / / cannot find symbol (stage)

    }
/ * / / Will not work


    }

您还可以查看此链接。这个问题在这里更详细:

stackoverflow.com/questions/22820049/full-screen-under-javafx-with-fxml-does-not-work

如何在任何地方使用舞台变量?还是有其他解决方案吗? 请帮帮我。

在互联网上我的问题没有答案!?!

我是Java初学者。 :-)

感谢您的帮助

2 个答案:

答案 0 :(得分:7)

为什么您的应用程序也是您的控制器?这似乎不会起作用,全屏功能或没有全屏功能。

控制器 中,只需注入按钮(或任何节点,但按钮就是明显的按钮),然后调用getScene()和{{ 1}}在事件处理程序中:

getWindow()

答案 1 :(得分:1)

我不是JavaFX专家,但这也不适用于纯Java。 DI容器注入全屏(事件)方法,该方法不知道stage,在start()中声明。

您是否尝试将其移至班级成员?     公共课Buch     {     私人舞台舞台;     ...     }