Skip to main content
summaryrefslogtreecommitdiffstats
blob: c2b315f88b584e1c787767dcdaf546fc8fa8a6c6 (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
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
	Do not edit this file it is generated by e(fx)clipse from ../src/org/eclipse/fx/testcases/fxgraph/LocationTest.fxgraph
-->

<?import java.lang.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.HBox?>

<HBox xmlns:fx="http://javafx.com/fxml">

	<children>
		<Button fx:id="buttonSettings"> 
			<graphic>
				<ImageView> 
					<image>
						<Image url="@icons/document-save.png"/> 
					</image>
				</ImageView>
			</graphic>
		</Button>
	</children>
</HBox>

Back to the top