0
in JavaFX私はラベルが親をオーバーラップするのを止めようとしています。これは、親がラベルよりも小さいサイズにサイズ変更されたときに発生します。この状況では、ラベルが隠されることを期待していますが、親の境界線を少しだけ表示します。ラベルに下のアンカーを追加することでこの問題を解決することをJavaFX stop親が重複していますか?
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane minHeight="500.0" minWidth="500.0" prefHeight="500.0" prefWidth="558.0" style="-fx-background-color: black;" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.65">
<children>
<AnchorPane layoutX="110.0" layoutY="102.0" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: red;" AnchorPane.bottomAnchor="15.0" AnchorPane.leftAnchor="15.0" AnchorPane.rightAnchor="15.0" AnchorPane.topAnchor="15.0">
<children>
<Label alignment="CENTER" layoutX="238.0" layoutY="201.0" style="-fx-background-color: gray;" text="Testing to see if this overlaps" textFill="WHITE" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0" AnchorPane.topAnchor="5.0">
<font>
<Font size="37.0" />
</font>
</Label>
</children>
</AnchorPane>
</children>
</AnchorPane>
ますが、私はそれを使用しないしたいと思います:
あなたはこれをテストするには、次のFXMLを使用することができます。この問題を回避する方法はありますか?ありがとう。