fx:False markup extension
The fx:False markup extension specifies the boolean false value.
In many cases, using the fx:False markup extension is not necessary. In a boolean assignment context, the text "false" is automatically converted to a boolean value.
Usage
<!-- Using the fx:False markup extension -->
<Button visible="{fx:False}"/>
<!-- Using type coercion -->
<Button visible="false"/>