Skip to content
Snippets Groups Projects
Commit 32ea9edf authored by niveseka's avatar niveseka
Browse files

Poistumisen varmistus fxml tiedosto

parent 812c17de
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.text.Font?>
<BorderPane xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<center>
<Label text="Are you sure you want to exit?" BorderPane.alignment="CENTER">
<BorderPane.margin>
<Insets bottom="40.0" left="100.0" right="100.0" top="50.0" />
</BorderPane.margin>
<font>
<Font size="14.0" />
</font>
</Label>
</center>
<bottom>
<HBox alignment="CENTER" BorderPane.alignment="CENTER">
<children>
<Button mnemonicParsing="false" prefWidth="50.0" text="Yes" textAlignment="CENTER">
<HBox.margin>
<Insets bottom="20.0" left="20.0" right="20.0" />
</HBox.margin>
</Button>
<Button mnemonicParsing="false" prefWidth="50.0" text="No">
<HBox.margin>
<Insets bottom="20.0" left="20.0" right="20.0" />
</HBox.margin>
</Button>
</children>
</HBox>
</bottom>
</BorderPane>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment