1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-26 04:36:24 -07:00

Add a tabbed pane as the main focus of the window.

This commit is contained in:
Danila Fedorin 2017-07-31 16:56:38 -07:00
parent 44ed0199d4
commit 2941252f7d

View File

@ -1,14 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns="http://javafx.com/javafx"
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="org.nwapw.abacus.fx.AbacusController"
prefHeight="400.0" prefWidth="600.0">
</AnchorPane>
fx:controller="org.nwapw.abacus.fx.AbacusController">
<center>
<TabPane>
<Tab text="Calculator" closable="false"/>
<Tab text="Settings" closable="false"/>
</TabPane>
</center>
</BorderPane>