布局文件 jianshu.xml
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.soft1841.sample5.JianShuController">
AnchorPane.leftAnchor="200"
AnchorPane.topAnchor="100" />
样式表文件jianshu.css
#testBtn{
-fx-text-fill:#FFFFFF;
-fx-background-color: rgb(202,48,43);
-fx-border-color: rgb(202,48,43);
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-pref-width: 100px;
-fx-pref-height: 35px;
-fx-padding: 6 6 6 6;
}
主程序 JianShuApp.java
package com.soft1841.sample5;
import com.soft1841.sample4.SingerApp;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import java