Dear Stackoverflow community,
I've implemented a custom control in JavaFX extending Control
class.
Everything is just working fine, but I keep getting the error message
Jan 30, 2015 8:33:31 AM javafx.scene.control.Control impl_processCSS
SEVERE: The -fx-skin property has not been defined in CSS for
CustomView@19e4d42 and createDefaultSkin() returned null.
when I run the application.
I read a lot about SkinBase
and BehaviorBase
, but since everything is working as it is supposed to, I would just like this error to disappear without implementing these classes if possible.
I'm not using CSS and I can't find any method to manually set a default skin.
I would really appreciate your help. Thanks in advance!