*
* @return
*/
private Node createSkinSelector() {
ChoiceBox<FXFormSkinFactory> choiceBox = new ChoiceBox<FXFormSkinFactory>();
choiceBox.getItems().addAll(FXFormSkinFactory.DEFAULT_FACTORY, FXFormSkinFactory.INLINE_FACTORY, new FXFormSkinFactory() {
@Override
public FXFormSkin createSkin(FXForm form) {
return new FXMLSkin(form, Demo.class.getResource("Demo_form.fxml"));
}