I have a javafx pane and a rectangle inside it.. I want to make the rectangle fill all space of the pane without set the width or height manually, because the pane be resizable..
can anybody help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Bind the height and width properties of the Rectangle to the height and width properties of the Pane.
Or you might want to just set the background of the Pane using css and get rid of the Rectangle altogether.