簡體   English   中英

JavaFX:有什么方法可以在TextArea中顯示圖像

[英]JavaFX: Is there any way to show images in a TextArea

我想在TextArea顯示圖像,就像在HTML中使用contentEditablediv一樣。
我不要背景圖片。
例如: HTML中具有<code> contentEditable </ code>的<code> div </ code>

我看到的唯一可能性就是將其添加為TextArea的Background。 例如通過帶有fx-background-image:url CSS

嘗試將textarea和圖像添加到同一組中,例如:

Textarea text = new Textarea();
ImageView img= new ImageView ();

Group group = new Group();

group.getChildren().add(img);
group.getChildren().add(text);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM