21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<?import javafx.scene.paint.*?>
|
||
|
<?import java.lang.*?>
|
||
|
<?import java.util.*?>
|
||
|
<?import javafx.scene.*?>
|
||
|
<?import javafx.scene.control.*?>
|
||
|
<?import javafx.scene.layout.*?>
|
||
|
|
||
|
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="progressbars.FXMLDocumentController">
|
||
|
<children>
|
||
|
<ProgressBar fx:id="pbBar" layoutX="174.0" layoutY="96.0" prefWidth="200.0" progress="0.0" />
|
||
|
<ProgressIndicator fx:id="piProgressIndicator" layoutX="244.0" layoutY="137.0" prefHeight="60.0" prefWidth="60.0" progress="0.0" />
|
||
|
<Label fx:id="lblBar" layoutX="399.0" layoutY="97.0" text="Label" />
|
||
|
<Label fx:id="lblProgIndicator" layoutX="327.0" layoutY="159.0" text="Label" />
|
||
|
<Button fx:id="btnStart" layoutX="254.0" layoutY="279.0" mnemonicParsing="false" onAction="#handleStart" text="Start" />
|
||
|
<ProgressBar layoutX="174.0" layoutY="78.0" prefWidth="200.0" />
|
||
|
<ProgressIndicator layoutX="248.0" layoutY="200.0" />
|
||
|
</children>
|
||
|
</Pane>
|