1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-24 06:12:23 -07:00

Create new fxml file and controller for it.

This commit is contained in:
Danila Fedorin 2017-07-31 16:48:04 -07:00
parent 2aa479a971
commit 5c886cee60
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package org.nwapw.abacus.fx;
public class AbacusController {
}

View File

@ -0,0 +1,14 @@
<?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"
xmlns:fx="http://javafx.com/fxml"
fx:controller="org.nwapw.abacus.fx.AbacusController"
prefHeight="400.0" prefWidth="600.0">
</AnchorPane>