2012-09-16 60 views
1

我已經解決了這個問題帶來的圖標圖像爲TitledPane這樣的標題:如何在TitledPane標題中設置ImageView的位置?

<TitledPane fx:id="x2" text="Strukturen"> 
      <graphic> 
       <ImageView > 
         <image> 
          <Image url="@/de/myres/icons/arrow-out.png" /> 
         </image> 
       </ImageView> 
      </graphic> 
      <content> 
        <AnchorPane id="Content" minHeight="0.0" minWidth="0.0" 
         prefHeight="180.0" prefWidth="200.0" /> 
      </content> 
      </TitledPane> 

這看起來如下:

TitledPane header with icon

正如你所看到的,當摺疊箭頭和此圖標直接顯示在彼此旁邊時,看起來不是很好。

我如何能實現獲得的圖標,標題欄的右側?

回答

2

你可以離開TitledPane文本的空白,並設置圖標節點是包含在左側標籤和右邊的ImageView的與HBox。