Skip to main content

All Questions

Tagged with
2 votes
1 answer
137 views

JavaFX - How to make custom component resizable in SceneBuilder?

I implemented a custom component (ToggleSwitch) like in this video : https://www.youtube.com/watch?v=maX5ymmQixM I created a .jar via Maven and added the .jar to SceneBuilder The component works but ...
AnotherByte's user avatar
2 votes
1 answer
348 views

keep rectangle rotation pivot on center when resized javafx

I recently start learn javafx. With help of several posts from here i created a draggable, resizable and rotable rectangle. My plan is use it as resizing control of custom nodes. I want rotation pívot ...
Michael's user avatar
  • 23
0 votes
0 answers
294 views

Is it possible to make a ImageView in JavaFX responsive?

me and some friends are having a project, where we try to programm a game in JavaFX. We´ve got a GridPane, thats growing with ImageViews inside to hold the map and the game character, etc. (The game ...
Sarah Multitasker's user avatar
1 vote
3 answers
550 views

Min and max properties in scene builder JavaFX do not work

I set min and max properties so that to make my window not resizable. But when I try it out it does not work. What is wrong?
Yaroslav's user avatar
  • 1,375
0 votes
1 answer
1k views

How to change 'Resizable' properties in Java FXML via SceneBuilder?

I want to disable the 'Resizable' Properties in my AnchorPane in SceneBuilder in FXML but the button is disabled. Sorry for my bad english.
Abdallah Al-Maskari's user avatar
4 votes
1 answer
17k views

javafx - Set not resizable for only one stage

I would like to know, how to solve one problem. OK. I have two scenes. I want to set not resizable to first scene, but the second one is still resizable. I don't know how to do it.   Do you ...
t.piwowarczyk's user avatar
0 votes
1 answer
159 views

How to block a ScrollPane panel JavaFX

I have a small problem. I'm building an interface with JavaFX like this: I wonder, how can I do to block those "lines" of the ScrollPane I indicated in the image? Practically it is not to ...
Re De Pasquale's user avatar
1 vote
1 answer
3k views

Is there a javafx panel the user can resize?

I need a javafx component that has a right and left panel with a draggable bar in between so the user can resize the 2 panels. Im having a bunch of trouble finding this - it has to exist. Not sure ...
George's user avatar
  • 1,283
0 votes
0 answers
230 views

How to add an unconstrained TextField to a GridPane using SceneBuilder?

I am trying to use Java FX (in Eclipse). I am building a GridPane using Scene Builder and want to add a TextField to the GridPane which is freely resizable, i.e. isn't constrained by the grid. How ...
Maciek Nicewicz's user avatar
7 votes
1 answer
4k views

JavaFX nodes - How to make them resizable by the end user?

I am developing a JavaFX application where a class I have developed (extended from javafx.scene.Parent) is created on-the-fly based on what entry the user has clicked in a ListView control. Just to ...
Cladgeman's user avatar
  • 113
5 votes
3 answers
21k views

Why disabling of stage resizable dont work in javafx?

When I try to setResizable for my scene in javaFX application it doesn't work. I still can change window size. Here's the code for my test application: @Override public void start(Stage stage) throws ...
user avatar