1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-09-28 09:35:32 -07:00
Abacus/src/main/resources/abacus.fxml

30 lines
1.0 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
2017-07-31 17:08:16 -07:00
<?import javafx.geometry.Insets?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="org.nwapw.abacus.fx.AbacusController">
<center>
<TabPane>
2017-07-31 17:08:16 -07:00
<Tab text="Calculator" closable="false">
<BorderPane>
<bottom>
<VBox>
<ScrollPane prefHeight="50" vbarPolicy="NEVER">
<padding><Insets top="10" bottom="10" left="10" right="10"/></padding>
</ScrollPane>
<TextField text="Input"/>
<Button text="Calculate" maxWidth="Infinity"/>
</VBox>
</bottom>
</BorderPane>
</Tab>
<Tab text="Settings" closable="false"/>
</TabPane>
</center>
2017-07-31 17:08:16 -07:00
</BorderPane>