WIP desktop client for Chatto reimplemented in ScalaFX and Sapphire Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
874 B

4 years ago
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <?import java.net.URL ?>
  3. <?import javafx.scene.control.Label ?>
  4. <?import javafx.scene.control.RadioButton ?>
  5. <?import javafx.scene.layout.VBox ?>
  6. <!-- fx:controller="com.example.javafx.control.UserBox" -->
  7. <fx:root prefHeight="65.0" styleClass="btn, btn-primary, user-box" type="VBox" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
  8. <children>
  9. <!-- <Label fx:id="nameLabel" id="nameLabel" text="John Doe" /> -->
  10. <RadioButton fx:id="_userRadioButton" mnemonicParsing="false" styleClass="h1, user-radio, lead" text="John Doe Radio" />
  11. <Label fx:id="_messageLabel" styleClass="messageLabel, lbl" text="Hey there, how are you?" />
  12. </children>
  13. <stylesheets>
  14. <URL value="@../styles/userbox.css" />
  15. <URL value="@../styles/bootstrapfx.css" />
  16. </stylesheets>
  17. </fx:root>