Skip to main content

Questions tagged [javafx]

JavaFX is a software platform for creating and delivering rich internet applications (RIAs) that can run across a wide variety of devices. From [Wikipedia JavaFX](https://en.wikipedia.org/wiki/Javafx)

67 votes
1 answer
21k views

I am just about to start my Java journey, ( I've already dabbled in C++) but I am getting really confused about all the different versions of Java: JavaSE JavaEE JavaFX etc. Can someone explain these ...
Patryk's user avatar
  • 1,279
14 votes
8 answers
14k views

I have a 4 years old project which is written in Swing + SwingX. Currently, it is still alive and still kicking. However, as more GUI related feature requests coming in (For instance, a sortable tree ...
Cheok Yan Cheng's user avatar
11 votes
3 answers
15k views

I need to write a cross-platform GUI application to process (in multiple threads) and visualize fairly large quantities of data. Ideally the application should be relatively fast and look good. The ...
egor's user avatar
  • 121
10 votes
2 answers
2k views

JavaFX has provided a bunch of new Property objects, such as javafx.beans.property.DoubleProperty which allow you to define fields which can be automatically observed and synchronised. In many JFX ...
pjm56's user avatar
  • 101
9 votes
2 answers
8k views

I have not intended to hash and rehash the same matter, but just to decide, what to learn first (JavaFX, Flex, HTML5, etc.) I would pull through a kind of survey, especially as the recent similar ...
user avatar
7 votes
1 answer
3k views

I need a bit of advice from you developers who deal with cross-platform applications (specifically programs with a GUI). I will be creating an application soon that needs to be cross-platform and so ...
FooBar's user avatar
  • 183
7 votes
1 answer
9k views

I have used a lot of JavaFX and am familiar with the technical aspects. Now, as I foray into a very large application with hundreds of views, I want to make sure I start strong with a solid design. ...
skex's user avatar
  • 71
5 votes
2 answers
559 views

I am refactoring the code for a music player I wrote in Java/JavaFX. I have a few key objects which are accessed throughout the program by various other classes. I think there will be four or five ...
JoshuaD's user avatar
  • 189
5 votes
1 answer
17k views

I am currently in middle of designing a backup application in JavaFX written in pure Java (meaning without Fxml) . I am having trouble implementing the MVC pattern for the following reason. The way I ...
SteelToe's user avatar
  • 1,599
4 votes
3 answers
5k views

Sorry if I got the wording wrong in my title, but it would be easiest to provide an example in JavaFX primaryStage.setScene(new Scene(grid, 300, 275)); Now from what I understand, this code is ...
Pat Nak's user avatar
  • 41
4 votes
1 answer
9k views

Hello StackExchange community! This is my first post and appreciate any help anyone can offer. I'm new to Java, and I'm sure this issue is simply due to my misunderstanding of the fundamentals. I ...
Josh Jennings's user avatar
4 votes
1 answer
926 views

I'm usually very careful to keep my Model, View, and Controller code separate. The thing is JavaFx properties are so convenient to bind them all together. The issue is that it makes my entire code ...
sinθ's user avatar
  • 1,311
3 votes
1 answer
1k views

In every example I have seen yet almost all of the GUI code is written in the start(Stage stage) method of the main class. Is this the best approach, or is it OK to subclass the Stage class and make ...
verin's user avatar
  • 31
2 votes
2 answers
2k views

This question is a continuation of a question originally posted here. I'm trying my hand at creating a Snake clone with JavaFX. One of the requirements for the game is to have a sort of powerup food, ...
deni3278's user avatar
2 votes
2 answers
5k views

I'm trying to follow MVC concepts when i develop my application ,but I'm confused between Using String or StringProperty in Model classes. Example one : public class User{ String name; ...
Ala Eddine Menai's user avatar

15 30 50 per page