Skip to content

Tag: javafx

Java required module can’t be found

I have a basic JavaFX project set up in IntelliJ: The project uses Gradle for dependency management. The dependency that was added by my is javax.mail.api as you can see in the build.gradle file here: The iissue I have now is that when trying to execute to programm with the following run configuration: I get …

Building JavaFX Projects with JDK 11.0.2 and Eclipse?

I’ve spent too much time trying to find how to do this with. Tips for setting up a dev environment are what I am asking for, however I will start with what I tried so far. As I understand JavaFX was separated from the JDK after JDK 8, however, for an R&D project, I need to create JavaFX applications…

How to set pane colour from colour picker

I have some code, in javafx, that has a pane that works like a paint canvas. I need to be able to fill the background color of the pane from a color picker. Currently I have a Color variable that gets the color chosen from the color picker and I try to set it to my Pane (named canvas) as