The "Invalid Property" Error is thrown at Line 20, which is for the TextField. No idea as to why it is being thrown.
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<VBox prefHeight="400.0" prefWidth="284.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<children>
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="375.0" prefWidth="285.0" VBox.vgrow="ALWAYS">
<children><Button fx:id="zero" layoutX="14.0" layoutY="321.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="0" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="230.0" /><Button fx:id="decimal" layoutX="54.0" layoutY="321.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="." AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="68.0" AnchorPane.rightAnchor="176.0" /><Button fx:id="posneg" layoutX="94.0" layoutY="321.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="+/-" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="122.0" AnchorPane.rightAnchor="122.0" /><Button fx:id="one" layoutX="14.0" layoutY="271.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="1" AnchorPane.bottomAnchor="68.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="230.0" /><Button fx:id="two" layoutX="54.0" layoutY="271.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="2" AnchorPane.bottomAnchor="68.0" AnchorPane.leftAnchor="68.0" AnchorPane.rightAnchor="176.0" /><Button fx:id="three" layoutX="94.0" layoutY="271.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="3" AnchorPane.bottomAnchor="68.0" AnchorPane.leftAnchor="122.0" AnchorPane.rightAnchor="122.0" /><Button fx:id="four" layoutX="14.0" layoutY="231.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="4" AnchorPane.bottomAnchor="122.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="230.0" /><Button fx:id="five" layoutX="54.0" layoutY="231.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="5" AnchorPane.bottomAnchor="122.0" AnchorPane.leftAnchor="68.0" AnchorPane.rightAnchor="176.0" /><Button fx:id="six" layoutX="94.0" layoutY="231.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="6" AnchorPane.bottomAnchor="122.0" AnchorPane.leftAnchor="122.0" AnchorPane.rightAnchor="122.0" /><Button fx:id="seven" layoutX="14.0" layoutY="173.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="7" AnchorPane.bottomAnchor="176.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="230.0" /><Button fx:id="eight" layoutX="68.0" layoutY="173.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="8" AnchorPane.bottomAnchor="176.0" AnchorPane.leftAnchor="68.0" AnchorPane.rightAnchor="176.0" /><Button fx:id="nine" layoutX="122.0" layoutY="173.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="9" AnchorPane.bottomAnchor="176.0" AnchorPane.leftAnchor="122.0" AnchorPane.rightAnchor="122.0" /><Button fx:id="equals" layoutX="162.0" layoutY="321.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="94.0" text="=" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="176.0" AnchorPane.rightAnchor="14.0">
<font>
<Font size="18.0" />
</font></Button><Button fx:id="oBracket" layoutX="176.0" layoutY="159.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="(" AnchorPane.bottomAnchor="176.0" AnchorPane.leftAnchor="176.0" AnchorPane.rightAnchor="68.0">
<font>
<Font size="16.0" />
</font></Button><Button fx:id="cBracket" layoutX="230.0" layoutY="159.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text=")" AnchorPane.bottomAnchor="176.0" AnchorPane.leftAnchor="230.0" AnchorPane.rightAnchor="14.0">
<font>
<Font size="16.0" />
</font></Button><TextField fx:id="equation" alignment="CENTER_RIGHT" editable="false" layoutX="14.0" layoutY="144.0" prefHeight="40.0" prefWidth="256.0" AnchorPane.bottomAnchor="230.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="14.0">
<font>
<Font size="18.0" />
</font></TextField><ToggleButton fx:id="multiply" layoutX="176.0" layoutY="238.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="×">
<font>
<Font size="18.0" />
</font></ToggleButton><ToggleButton fx:id="divide" layoutX="230.0" layoutY="238.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="÷">
<font>
<Font size="18.0" />
</font></ToggleButton><ToggleButton fx:id="add" layoutX="176.0" layoutY="292.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="+">
<font>
<Font size="18.0" />
</font>
</ToggleButton><ToggleButton fx:id="subtract" layoutX="230.0" layoutY="292.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="40.0" text="-">
<font>
<Font size="18.0" />
</font>
</ToggleButton><Label fx:id="previousEquation" alignment="BOTTOM_RIGHT" contentDisplay="RIGHT" layoutX="216.0" layoutY="89.0" textAlignment="RIGHT" AnchorPane.rightAnchor="14.0">
<font>
<Font size="18.0" />
</font></Label><Label fx:id="fadeEquation" alignment="BOTTOM_RIGHT" contentDisplay="RIGHT" layoutX="216.0" layoutY="89.0" textAlignment="RIGHT" AnchorPane.rightAnchor="14.0">
<font>
<Font size="18.0" />
</font>
</Label><Button fx:id="clear" layoutX="20.0" layoutY="138.0" mnemonicParsing="false" prefHeight="20.0" prefWidth="40.0" text="←" AnchorPane.leftAnchor="20.0" />
</children>
</AnchorPane>
</children>
</VBox>
Also, I have Mathmatical Characters in there, such as the division symbol, will those be issues?