Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
BorderPane の Center、Top、Left、Right、および Bottom コンポーネントのサイズを設定したいと考えています。
これまでのところ、私はこれを見つけました:
BorderPane() mainpane = new BorderPane(); mainPane.getBottom().prefWidth(sizeX);
たとえば、BorderPane の Left side のサイズを取得してサイズを設定するにはどうすればよいですか?
BorderPane の「左」は設定したものであり、サイズは設定したものです。
例:
BorderPane mainpane = new BorderPane(); StackPane left = new StackPane(); left.setPrefWidth(100); mainPane.setLeft(left);