Skip to main content
summaryrefslogtreecommitdiffstats
blob: 69d84cf4ff8e058086dba7f9c1a94f1315f7fd4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.eclipse.fx.testcases.fxgraph.realworld

import javafx.scene.layout.VBox
import javafx.geometry.Insets
import javafx.scene.layout.HBox
import javafx.scene.control.Label
import javafx.scene.control.PasswordField
import org.eclipse.fx.testcases.fxgraph.realworld.GoogleGroupSample

component GoogleGroupSample controlledby GoogleGroupSample {
	VBox {
		padding : Insets {
			top : 10,
			left : 0,
			right : 0,
			bottom : 10
		},
		spacing : 10,
		children : [
			HBox {
				children : [
					Label {
						text : "Password"
					},
					PasswordField id pb {
						onAction : controllermethod onAction
					}
				]
			},
			Label id message
		]
	}
}

Back to the top