Skip to main content
summaryrefslogtreecommitdiffstats
blob: 602c249d2d74bd3a74b9c5a8b32674aee6640544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.fx.testcases.fxgraph

import javafx.scene.layout.AnchorPane
import javafx.scene.layout.BorderPane
import org.eclipse.fx.testcases.fxgraph.MyButton
import javafx.scene.control.Button

component CustomAttributes {
	BorderPane {
		top : MyButton {
			scaleFactor: 2
		},
		bottom : Button {
			text : "Hello"
		}
	}
}

Back to the top