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.
我创建了一个 javafx 按钮并添加了图像和文本。我希望将文本放置在顶部,并将图像放置到 javafx 按钮的中间。javafx 可以吗?我该怎么做?
你必须使用 button.setContentDisplay(ContentDisplay.TOP);
button.setContentDisplay(ContentDisplay.TOP);
内容显示
您也可以为按钮使用 CSS。下面的示例将在顶部显示所有按钮的文本以及下面的图像(这似乎违反直觉):
.button { -fx-content-display: bottom; }