- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.fxml
More file actions
Latest commit
20 lines (19 loc) · 924 Bytes
/
Copy pathsample.fxml
File metadata and controls
20 lines (19 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Slider?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPaneid="AnchorPane"maxHeight="-Infinity"maxWidth="-Infinity"minHeight="-Infinity"minWidth="-Infinity"
prefHeight="500.0"prefWidth="500.0"xmlns:fx="http://javafx.com/fxml/1"
xmlns="http://javafx.com/javafx/2.2"fx:controller="sample.Controller">
<children>
<Labelfx:id="txtSlider"layoutX="146.0"layoutY="277.0"text="Move the Slider">
<font>
<Fontsize="30.0"/>
</font>
</Label>
<Sliderfx:id="slider"layoutX="136.0"layoutY="223.0"onMouseReleased="#onSliderChanged"prefHeight="54.0"
prefWidth="228.0"/>
<LabellayoutX="206.0"layoutY="51.0"text="Slider Example"/>
</children>
</AnchorPane>