17 lines
911 B
XML
17 lines
911 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.image.*?>
|
|
<?import java.lang.*?>
|
|
<?import java.util.*?>
|
|
<?import javafx.scene.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<Pane fx:id="canvas" 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="easyscreenshotter.FXMLDocumentController">
|
|
<children>
|
|
<ImageView fx:id="ivPicture" fitHeight="300.0" fitWidth="400.0" layoutX="100.0" layoutY="50.0" pickOnBounds="true" preserveRatio="true" />
|
|
<Button fx:id="btnLoad" layoutX="279.0" layoutY="2.0" mnemonicParsing="false" onAction="#handleLoad" text="Load" />
|
|
<Button fx:id="btnSave" layoutX="321.0" layoutY="2.0" mnemonicParsing="false" onAction="#handleSave" text="Save" />
|
|
</children>
|
|
</Pane>
|