📜  javafx 更改应用程序标题 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:40.733000             🧑  作者: Mango

代码示例1
public void start(Stage stage) throws Exeption
{
    stage.setTitle("ExampleTitle"); //This sets the title of you window
}