You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
530 B
17 lines
530 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<BorderPane xmlns:fx="http://javafx.com/fxml"
|
|
xmlns="http://javafx.com/javafx"
|
|
fx:controller="view.ImageWindow"
|
|
prefHeight="400.0" prefWidth="600.0">
|
|
<BorderPane>
|
|
<ImageView fx:id="imageView"/>
|
|
</BorderPane>
|
|
<bottom>
|
|
<Button onAction="#exit" fx:id="buttonExit">Fermer</Button>
|
|
</bottom>
|
|
</BorderPane>
|