-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvista.fxml
More file actions
executable file
·19 lines (17 loc) · 1.07 KB
/
Copy pathvista.fxml
File metadata and controls
executable file
·19 lines (17 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<AnchorPane fx:id="mypane" prefHeight="300.0" prefWidth="500.0" style="-fx-background-color: white;" stylesheets="@application.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.Controller">
<children>
<Pane prefHeight="250.0" prefWidth="500.0" styleClass="fondo" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
<HBox spacing="10.0" AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="10.0">
<children>
<Button mnemonicParsing="false" onAction="#setblur" styleClass="buttonoff" text="Blur" />
<Button mnemonicParsing="false" onAction="#setfocus" styleClass="buttonoff" text="Focus" />
<Button mnemonicParsing="false" onAction="#handleClose" styleClass="buttonon" text="Close" />
</children>
</HBox>
</children>
</AnchorPane>