日期:2014-05-20 浏览次数:20752 次
// place your code here import javafx.stage.Stage; import javafx.scene.Scene; import javafx.scene.paint.LinearGradient; import javafx.scene.paint.Stop; import javafx.scene.paint.Color; Stage { title : "JavaFx Record Button" width : 249 height : 251 visible : true scene: Scene { fill: LinearGradient { startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0, proportional: true stops: [ Stop {offset: 0.0 color: Color.WHITE}, Stop {offset: 1.0 color: Color.BLACK} ] } content: [ //objects that appear on the scene ] } }